<?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 you envision using Arcade in dashboards? in ArcGIS Dashboards Questions</title>
    <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157278#M832</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also missed the survey.&amp;nbsp; At this time, looking to simply calculate a percent between two columns on the fly.&amp;nbsp; Versus having to recalculate an entire column every time a value is updated in any row in the database, or having to manually calculate a percent.&amp;nbsp; The percent would be displayed in the list in operations dashboard as it is in the attribute expression in the AGOL map.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I envision using auto-calculated Arcade based fields to automatically categorize data based on a number of other column values.&amp;nbsp; Can use it to automatically generate fields with different Units of Measure from the shape.area.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sure I'll think of many more use cases as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for looking into this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Oct 2019 15:37:10 GMT</pubDate>
    <dc:creator>OHARNG</dc:creator>
    <dc:date>2019-10-09T15:37:10Z</dc:date>
    <item>
      <title>How do you envision using Arcade in dashboards?</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157274#M828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Operations Dashboard team&amp;nbsp;has&amp;nbsp;heard your requests to better support Arcade expressions in dashboards, and we want to know more.&amp;nbsp;If this speaks to you, please&amp;nbsp;complete this survey to tell us some details of how you'd like to use it in your dashboards. Your input is valued and will be considered. Thank you for your time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://arcg.is/19nPbv" title="https://arcg.is/19nPbv"&gt;https://arcg.is/19nPbv&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Survey will expire Friday, April 12, 2019.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Apr 2019 20:32:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157274#M828</guid>
      <dc:creator>DavidNyenhuis1</dc:creator>
      <dc:date>2019-04-03T20:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do you envision using Arcade in dashboards?</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157275#M829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I missed this survey but for me I use Arcade in my web map to summarize related records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my latest use I am using it for QA.&amp;nbsp; Like out crew must do lines 1, 2, 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;var msg &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;""&lt;/SPAN&gt;
var sql &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"PlotKey = '"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;PlotKey &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"'"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
var tbl &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Filter&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;FeatureSetByName&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$map&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"GAP"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sql&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

var txt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;var f in &lt;SPAN class="token function"&gt;OrderBy&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tbl&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"LineKey"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    txt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; txt &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Right&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;f&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;LineKey&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'-'&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
txt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Left&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;txt&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;Count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;txt&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;-&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;txt &lt;SPAN class="operator token"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'1-2-3'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    msg &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"\nLine Number Issue! Found: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; txt
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

var sql &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"PlotKey = '"&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;PlotKey &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"'"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
var tbl &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;Filter&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;FeatureSetByName&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$map&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Plot Char"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; sql&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;

var tblCnt &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;count&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tbl&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tblCnt &lt;SPAN class="operator token"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    msg &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; msg &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"\n----No Plot Char form found!"&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;tblCnt &lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    msg &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; msg &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"\n----More than 1 Plot Char form found!"&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;


&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;msg &lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;''&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'&amp;lt;font face="verdana" color="green"&amp;gt;Everything Looks good!&amp;lt;/font&amp;gt;'&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; msg
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:20:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157275#M829</guid>
      <dc:creator>DougBrowning</dc:creator>
      <dc:date>2021-12-11T08:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do you envision using Arcade in dashboards?</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157276#M830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I missed the survey as well but plan on using it to summarize/group data.&amp;nbsp; Currently, I have several fields that I plan on using in a bulleted list but I want the list to be generated based on if values are present in the specific fields (i.e. not null).&amp;nbsp; This can be accomplished with an arcade expression at the webmap level for a pop-up but I want that expression to be available in the list or details widgets of a dashboard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 May 2019 16:21:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157276#M830</guid>
      <dc:creator>WestervilleGIS</dc:creator>
      <dc:date>2019-05-17T16:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: How do you envision using Arcade in dashboards?</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157277#M831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another use case: I want to show the status of Warming/Cooling centers dynamically in the Details widget (only show centers open today) and in Pie Charts (show current open/closed status of centers). I currently use Arcade to change the symbology by comparing the current time and hours of operation stored in the features. Wish I could access these Arcade expressions in Operations Dashboard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jul 2019 18:16:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157277#M831</guid>
      <dc:creator>ChelseaRozek</dc:creator>
      <dc:date>2019-07-18T18:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do you envision using Arcade in dashboards?</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157278#M832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also missed the survey.&amp;nbsp; At this time, looking to simply calculate a percent between two columns on the fly.&amp;nbsp; Versus having to recalculate an entire column every time a value is updated in any row in the database, or having to manually calculate a percent.&amp;nbsp; The percent would be displayed in the list in operations dashboard as it is in the attribute expression in the AGOL map.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I envision using auto-calculated Arcade based fields to automatically categorize data based on a number of other column values.&amp;nbsp; Can use it to automatically generate fields with different Units of Measure from the shape.area.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sure I'll think of many more use cases as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for looking into this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2019 15:37:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157278#M832</guid>
      <dc:creator>OHARNG</dc:creator>
      <dc:date>2019-10-09T15:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do you envision using Arcade in dashboards?</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157279#M833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a example of an expression I need to do&amp;nbsp;BEFORE summarizing the result in Charts and Indicators:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum( Contract_Cost_per_Acre / Contract_Acres)&amp;nbsp; &amp;nbsp;across a Project, Region, or District.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's another example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;StdDev(&amp;nbsp; Volume_MBF_Acre /&amp;nbsp; Trees_Per_Acre )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same kind of calculation issues apply to Source Fields that are _Avg&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Taking the Sum of&amp;nbsp; Avg_BASAL_Area_AC&amp;nbsp; across multiple Contract Acres is problematic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We need to be able to do real Math Calculations in order to correctly analyse and use our many years of collected Timber data.&amp;nbsp; &amp;nbsp;In order to better manage our public Natural Resources.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you -- for providing some Excel-like calculation capabilities, hopefully soon.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2020 15:22:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157279#M833</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2020-03-26T15:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do you envision using Arcade in dashboards?</title>
      <link>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157280#M834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;UPDATE: New Arcade support in dashboards has been introduced in the &lt;A _jive_internal="true" href="https://community.esri.com/community/arcgis-dashboards-beta"&gt;ArcGIS Dashboards Beta&lt;/A&gt; (recently renamed from Operations Dashboard). Please check out this &lt;A href="https://www.esri.com/arcgis-blog/products/ops-dashboard/real-time/getting-started-with-arcade-in-arcgis-dashboards/"&gt;blog article&lt;/A&gt; or the &lt;A _jive_internal="true" href="https://community.esri.com/docs/DOC-14730"&gt;documentation&lt;/A&gt; to learn more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2020 16:24:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-dashboards-questions/how-do-you-envision-using-arcade-in-dashboards/m-p/157280#M834</guid>
      <dc:creator>DavidNyenhuis1</dc:creator>
      <dc:date>2020-04-16T16:24:30Z</dc:date>
    </item>
  </channel>
</rss>

