<?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: Manual Sync with Database using SQLite database from ArcGIS Collector in ArcGIS Collector Questions</title>
    <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194501#M3335</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the tip, but I must still be missing something.&amp;nbsp; Running that tool (runtime to fgdb) still results in delta tables, not the actual data.&amp;nbsp; The result is identical to the output of Russell's script, so I still have the same question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Mar 2015 22:47:27 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2015-03-31T22:47:27Z</dc:date>
    <item>
      <title>Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194496#M3330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We are using the ArcGIS Collector on an iPad Air to edit existing features and add new features while disconnected. The application collects the data fine, but we are having issues trying to synchronize with an ArcGIS Server 10.2.2 feature service.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it possible to use the file sharing capability through iTunes to copy the the SQLite database off of the iPad and manually synchronize the database with ArcGIS Server and the ArcSDE geodatabase?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Brian&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 May 2014 16:45:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194496#M3330</guid>
      <dc:creator>BrianHiller</dc:creator>
      <dc:date>2014-05-28T16:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194497#M3331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is the python script..watch out for any white spaces that may be generated when copying and pasting..onnce the KB article is released I will point to that support page.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;First copy the .geodatabase file to your computer. You can get to the .geodatabase file under the ArcGIS_Collector folder &amp;gt; offline data &amp;gt; folder with user account name associated with downloaded data &amp;gt; folder with the webmap id &amp;gt; copy the .geodatabase and you paste it onto your computer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
def main(argv):
&amp;nbsp;&amp;nbsp; input_gdb = 'Enter .geodatabase location'
&amp;nbsp;&amp;nbsp; output_gdb = 'Enter in an existing fgdb location you want data to be exported into'
&amp;nbsp;&amp;nbsp; try:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="])
&amp;nbsp;&amp;nbsp; except getopt.GetoptError:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print 'test.py -i &amp;lt;input_gdb&amp;gt; -o &amp;lt;input_gdb&amp;gt;'
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sys.exit(2)
&amp;nbsp;&amp;nbsp; for opt, arg in opts:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if opt == '-h':
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print 'test.py -i &amp;lt;input_gdb&amp;gt; -o &amp;lt;output_gdb&amp;gt;'
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sys.exit()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elif opt in ("-i", "--ifile"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; input_gdb = arg
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elif opt in ("-o", "--ofile"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output_gdb = arg
&amp;nbsp;&amp;nbsp; print 'Input gdb is: "', input_gdb
&amp;nbsp;&amp;nbsp; print 'Output gdb is: "', output_gdb

&amp;nbsp;&amp;nbsp; Temp_xml = "temp.xml"

&amp;nbsp;&amp;nbsp; # Delete the xml workspace document if it exists.
&amp;nbsp;&amp;nbsp; arcpy.Delete_management(Temp_xml)

&amp;nbsp;&amp;nbsp; # Export XML Workspace Document
&amp;nbsp;&amp;nbsp; arcpy.ExportXMLWorkspaceDocument_management(input_gdb, Temp_xml, "DATA", "BINARY", "METADATA")

&amp;nbsp;&amp;nbsp; # Import XML Workspace Document. This assumes that the outputfile geodatabase is EMPTY.
&amp;nbsp;&amp;nbsp; arcpy.ImportXMLWorkspaceDocument_management(output_gdb, Temp_xml, "DATA", "")

&amp;nbsp;&amp;nbsp; # Delete the xml workspace document if it exists.
&amp;nbsp;&amp;nbsp; arcpy.Delete_management(Temp_xml)

if __name__ == "__main__":
&amp;nbsp;&amp;nbsp; main(sys.argv[1:])

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:45:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194497#M3331</guid>
      <dc:creator>RussRoberts</dc:creator>
      <dc:date>2021-12-11T09:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194498#M3332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Russell,&lt;/P&gt;&lt;P&gt;Can you please elaborate on the python script your wrote in response to this topic from Brian? I have the same issue with an offline geodatabase but cannot seem to get the python script to do anything. There are not any coding or syntax errors that I can see when comparing it to yours listed. Is this run from within Desktop, from within IDLE or just as a stand-alone file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Randy Weaver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Nov 2014 22:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194498#M3332</guid>
      <dc:creator>RandyWeaver</dc:creator>
      <dc:date>2014-11-11T22:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194499#M3333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Randy: if&amp;nbsp; you add the modules to the beginning, this will run as a standalone script.&amp;nbsp; Add this to the top of the script: import sys, getopt, arcpy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Russell: the result of this script is delta tables, not actual data.&amp;nbsp; I expected to see the actual data.&amp;nbsp; Is there a recommended workflow for using these tables to get the ArcGIS Server/iPad data to synchronize back to the parent database?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 22:07:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194499#M3333</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2015-03-31T22:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194500#M3334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ArcGIS 10.3 has a toolbox tool to convert the SQLite .geodatabase file to a FGDB.&amp;nbsp; Once converted you can add the data to your SDE however you choose.&amp;nbsp; It's a manual sync, but better than no sync at all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 22:37:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194500#M3334</guid>
      <dc:creator>MichaelDavis3</dc:creator>
      <dc:date>2015-03-31T22:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194501#M3335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the tip, but I must still be missing something.&amp;nbsp; Running that tool (runtime to fgdb) still results in delta tables, not the actual data.&amp;nbsp; The result is identical to the output of Russell's script, so I still have the same question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 22:47:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194501#M3335</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2015-03-31T22:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194502#M3336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange - every time I've used it the tool produces a geodatabase, and it takes care of merging all the delta&amp;nbsp; tables together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible that your SQLite database was modified after you pulled it from the mobile device?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 01:27:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194502#M3336</guid>
      <dc:creator>MichaelDavis3</dc:creator>
      <dc:date>2015-04-01T01:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194503#M3337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marianne, the script ended up working like you had mentioned. I did not however have the issue that you are currently having.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 02:58:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194503#M3337</guid>
      <dc:creator>RandyWeaver</dc:creator>
      <dc:date>2015-04-01T02:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194504#M3338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well... I'm not doing exactly what is prescribed here.&amp;nbsp; Our IT does not allow iTunes (but they do issue everyone iPads...).&amp;nbsp; So, what I'm doing is pulling the sqlite off of the ArcGIS Server.&amp;nbsp; I was hoping, since the iPad reported a successful sync, that I might find data there.&amp;nbsp; But I didn't, just the tables I referenced above.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 04:00:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194504#M3338</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2015-04-01T04:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194505#M3339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah - that's your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to tell your IT department to get over their hang up with iTunes.  Pulling the geodatabase off the iPad with iTunes is the ONLY way to recover the data so you can convert it and sync.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before we started using iOS runtime apps iTunes was a no-go with our IT folks as well... But eventually even they have to wake up to progress.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2015 04:41:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194505#M3339</guid>
      <dc:creator>MichaelDavis3</dc:creator>
      <dc:date>2015-04-01T04:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194506#M3340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to manually sync offline data collection to a hosted feature class?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My client successfully tested syncing his offline data collection, so he went out and used Collector for a real inspection. But the real inspection would not sync(tried connecting to different network for faster Internet connection), so I ended up getting his SQLite database from his iPad, and appending it to the original SDE geodatabase that was used to publish the hosted feature class and then re-published feature service to AGOL. It was very time-consuming since the data contained GlobalID fields, which are assigned with new ID values when you append/load data.&amp;nbsp; This broke relationships formed off the GlobalIDs that was originally assigned to it, such as related tables and attachments. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am wondering if there's a way I can sync replicas using REST API (&lt;A href="http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#//02r3000000vv000000" title="http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#//02r3000000vv000000"&gt;ArcGIS REST API&lt;/A&gt; ) and the SQLite file. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2015 19:41:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194506#M3340</guid>
      <dc:creator>AhjungKim4</dc:creator>
      <dc:date>2015-09-15T19:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194507#M3341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not really - and trying to "sync" the database from the device can be a bit of a pain, especially if there are edits to existing data and you need to figure out what changed and what didn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a shortcut you can take that might help though.&amp;nbsp; When you sync, ArcServer saves a copy of the data that the device transmits to a folder like this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;\\servername\ArcGISServer\directories\arcgissystem\arcgisuploads\services\servicename\&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;In there you will find a folder containing a sqlite geodatabase with the diff data (adds/deletes/edits) for your feature service.&amp;nbsp; If you grab these files and convert them to a file geodatabase you can take care of adding/replacing/deleting features in an ArcMap session.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Sep 2015 20:01:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194507#M3341</guid>
      <dc:creator>MichaelDavis3</dc:creator>
      <dc:date>2015-09-15T20:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194508#M3342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Russel, does this script work in ArcGIS Desktop 10.1? My field clients will only have that version whereas in house we use 10.2+.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thankx&lt;/P&gt;&lt;P&gt;Frank &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2015 14:25:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194508#M3342</guid>
      <dc:creator>FrankPotempa</dc:creator>
      <dc:date>2015-10-05T14:25:30Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194509#M3343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The main issue with that script is that any edited features will not come through and could cause errors either in the script or the output in the resulting gdb. The script really only works well when new features have been added. I would really recommend if you can use the 10.3 tool that will migrate the data over into a fgdb.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2015 15:54:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194509#M3343</guid>
      <dc:creator>RussRoberts</dc:creator>
      <dc:date>2015-10-05T15:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Manual Sync with Database using SQLite database from ArcGIS Collector</title>
      <link>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194510#M3344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Russell thanks for the information. I would prefer to have clients use 10.3 as well. My constraint unfortunately is that my field clients only have access to 10.1 Basic and I'm trying to utilize the script at that version. My field clients don't have internet access in their locations for days sometimes weeks. Without internet the ability to sync from Collector or even email the .geodatabase file to in house staff is limited. So finding an alternative for the field user to get the data into ArcMAP 10.1 would be beneficial. Any other suggestions? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Oct 2015 16:35:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-collector-questions/manual-sync-with-database-using-sqlite-database/m-p/194510#M3344</guid>
      <dc:creator>FrankPotempa</dc:creator>
      <dc:date>2015-10-05T16:35:01Z</dc:date>
    </item>
  </channel>
</rss>

