<?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 Arcpy on linux AGS 10.1 TabletoTable &amp;amp;quot;warning empty output generated&amp;amp;quot; in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/arcpy-on-linux-ags-10-1-tabletotable-amp-quot/m-p/73626#M2855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi there, I have a script that is running fine on local machine (ArcGIS 10.1 SP1), but when I copy the script to my arcGIS server 10.1 SP1 for linux (ubuntu) where it was designed to run I'm getting an error.&amp;nbsp; I understand and have read about the paths getting reformmated to windows paths, but I have made an effort to write the script to work with this.&amp;nbsp;&amp;nbsp; I'm getting an error message after running "TableToTable":&amp;nbsp; "WARNING 000117: Warning empty output generated."&amp;nbsp; Thus the last two arcpy gp tools are running on an empty table.&amp;nbsp; The general workflow is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CSV to fGdb table &amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;makeXYeventlayer &amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;project event layer to feature class&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my script:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import sys
import os
import string
import arcpy

#root path variable
rootpath = os.path.dirname(os.path.abspath(__file__))
gdb_path = rootpath + "/NWISSites.gdb"

#set arcpy workspace
arcpy.env.workspace = gdb_path

#arcpy stuff
try:
 #copy CSV to fgdb table
 print "&amp;nbsp; Copying CSV to fgdb table..."
 if arcpy.Exists(gdb_path + "/sitelist"):
&amp;nbsp; arcpy.Delete_management(gdb_path + "/sitelist")&amp;nbsp; 
 tableToTableResult = arcpy.TableToTable_conversion(rootpath + "/sitelist.csv", gdb_path, "sitelist")
 print tableToTableResult.getMessages()

 #create event layer from site file csv
 print "&amp;nbsp; Creating event layer..."
 if arcpy.Exists("nwis_sites"):
&amp;nbsp; arcpy.Delete_management("nwis_sites") 
 eventLayerResult = arcpy.MakeXYEventLayer_management(gdb_path + "/sitelist", "site_lng", "site_lat", "nwis_sites",rootpath + "/wgs1984.prj","")
 print eventLayerResult.getMessages()
 
 #delete existing feature class if it exists
 if arcpy.Exists(gdb_path + "/all_sites"):
&amp;nbsp; #backup existing
&amp;nbsp; print "&amp;nbsp; Backing up existing features..."
&amp;nbsp; arcpy.CopyFeatures_management(gdb_path + "/all_sites", gdb_path + "/all_sites_backup")
&amp;nbsp; arcpy.Delete_management(gdb_path + "/all_sites")
&amp;nbsp; 
 #project event layer points to web mercator
 print "&amp;nbsp; Projecting feature class..."
 projectFeaturesResult = arcpy.Project_management("nwis_sites", gdb_path + "/all_sites", rootpath + "/webmerc.prj")
 print projectFeaturesResult.getMessages()
 
except Exception, e:
 # If an error occurred, print line number and error message
 tb = sys.exc_info()[2]
 print "Failed at step 1 \n" "Line %i" % tb.tb_lineno
 print e.message&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Successful output running on Windows, ArcGIS Desktop 10.1 SP1:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp; Copying CSV to fgdb table...
Executing: TableToTable C:\NYBackup\NWIS_mapper\test/sitelist.csv C:\NYBackup\NWIS_mapper\test/NWISSites.gdb sitelist # "site_no "site_no" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_no,-1,-1;site_name "site_name" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_name,-1,-1;site_cat "site_cat" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_cat,-1,-1;site_agc "site_agc" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_agc,-1,-1;site_status "site_status" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_status,-1,-1;site_lng "site_lng" true true false 8 Double 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_lng,-1,-1;site_lat "site_lat" true true false 8 Double 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_lat,-1,-1" #
Start Time: Wed Jan 02 19:28:57 2013
Succeeded at Wed Jan 02 19:30:29 2013 (Elapsed Time: 1 minutes 32 seconds)
&amp;nbsp; Creating event layer...
Executing: MakeXYEventLayer C:\NYBackup\NWIS_mapper\test/NWISSites.gdb/sitelist site_lng site_lat nwis_sites "GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];-400 -400 1000000000;-100000 10000;-100000 10000;8.98315284119522E-09;0.001;0.001;IsHighPrecision" #
Start Time: Wed Jan 02 19:03:58 2013
Succeeded at Wed Jan 02 19:04:09 2013 (Elapsed Time: 11.00 seconds)
&amp;nbsp; Projecting feature class...
Executing: Project nwis_sites C:\NYBackup\NWIS_mapper\test\NWISSites.gdb\all_sites PROJCS['WGS_1984_Web_Mercator_Auxiliary_Sphere',GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Mercator_Auxiliary_Sphere'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',0.0],PARAMETER['Central_Meridian',0.0],PARAMETER['Standard_Parallel_1',0.0],PARAMETER['Auxiliary_Sphere_Type',0.0],UNIT['Meter',1.0]] # GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]
Start Time: Wed Jan 02 19:04:12 2013
Succeeded at Wed Jan 02 19:06:37 2013 (Elapsed Time: 2 minutes 25 seconds)
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the failed output on the linux ArcGIS for Server 10.1 SP1, same exact folder and input CSV copied over to linux.&amp;nbsp; File permissions should be an issue since all files are owned by the "arcgis" user:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; Copying CSV to fgdb table...
Executing: TableToTable Z:\gisdata\data\NWIS\python\sitelist.csv Z:\gisdata\data\NWIS\python\NWISSites.gdb sitelist # "site_no "site_no" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_no,-1,-1;site_name "site_name" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_name,-1,-1;site_cat "site_cat" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_cat,-1,-1;site_agc "site_agc" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_agc,-1,-1;site_status "site_status" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_status,-1,-1;site_lng "site_lng" true true false 8 Double 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_lng,-1,-1;site_lat "site_lat" true true false 8 Double 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_lat,-1,-1" #
Start Time: Wed Jan&amp;nbsp; 2 19:06:27 2013
WARNING 000117: Warning empty output generated.
Succeeded at Wed Jan&amp;nbsp; 2 19:08:00 2013 (Elapsed Time: 1 minutes 33 seconds)
&amp;nbsp; Creating event layer...
Executing: MakeXYEventLayer Z:\gisdata\data\NWIS\python/NWISSites.gdb/sitelist site_lng site_lat nwis_sites "GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];-400 -400 1000000000;-100000 10000;-100000 10000;8.98315284119521E-09;0.001;0.001;IsHighPrecision" #
Start Time: Wed Jan&amp;nbsp; 2 19:08:00 2013
Succeeded at Wed Jan&amp;nbsp; 2 19:08:01 2013 (Elapsed Time: 1.00 seconds)
&amp;nbsp; Projecting feature class...
Executing: Project nwis_sites Z:\gisdata\data\NWIS\python\NWISSites.gdb\all_sites PROJCS['WGS_1984_Web_Mercator_Auxiliary_Sphere',GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Mercator_Auxiliary_Sphere'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',0.0],PARAMETER['Central_Meridian',0.0],PARAMETER['Standard_Parallel_1',0.0],PARAMETER['Auxiliary_Sphere_Type',0.0],UNIT['Meter',1.0]] # GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]
Start Time: Wed Jan&amp;nbsp; 2 19:08:06 2013
Succeeded at Wed Jan&amp;nbsp; 2 19:08:07 2013 (Elapsed Time: 1.00 seconds)
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any help&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Jan 2013 22:18:53 GMT</pubDate>
    <dc:creator>MartynSmith</dc:creator>
    <dc:date>2013-01-02T22:18:53Z</dc:date>
    <item>
      <title>Arcpy on linux AGS 10.1 TabletoTable &amp;quot;warning empty output generated&amp;quot;</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/arcpy-on-linux-ags-10-1-tabletotable-amp-quot/m-p/73626#M2855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi there, I have a script that is running fine on local machine (ArcGIS 10.1 SP1), but when I copy the script to my arcGIS server 10.1 SP1 for linux (ubuntu) where it was designed to run I'm getting an error.&amp;nbsp; I understand and have read about the paths getting reformmated to windows paths, but I have made an effort to write the script to work with this.&amp;nbsp;&amp;nbsp; I'm getting an error message after running "TableToTable":&amp;nbsp; "WARNING 000117: Warning empty output generated."&amp;nbsp; Thus the last two arcpy gp tools are running on an empty table.&amp;nbsp; The general workflow is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CSV to fGdb table &amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;makeXYeventlayer &amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;project event layer to feature class&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is my script:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;import sys
import os
import string
import arcpy

#root path variable
rootpath = os.path.dirname(os.path.abspath(__file__))
gdb_path = rootpath + "/NWISSites.gdb"

#set arcpy workspace
arcpy.env.workspace = gdb_path

#arcpy stuff
try:
 #copy CSV to fgdb table
 print "&amp;nbsp; Copying CSV to fgdb table..."
 if arcpy.Exists(gdb_path + "/sitelist"):
&amp;nbsp; arcpy.Delete_management(gdb_path + "/sitelist")&amp;nbsp; 
 tableToTableResult = arcpy.TableToTable_conversion(rootpath + "/sitelist.csv", gdb_path, "sitelist")
 print tableToTableResult.getMessages()

 #create event layer from site file csv
 print "&amp;nbsp; Creating event layer..."
 if arcpy.Exists("nwis_sites"):
&amp;nbsp; arcpy.Delete_management("nwis_sites") 
 eventLayerResult = arcpy.MakeXYEventLayer_management(gdb_path + "/sitelist", "site_lng", "site_lat", "nwis_sites",rootpath + "/wgs1984.prj","")
 print eventLayerResult.getMessages()
 
 #delete existing feature class if it exists
 if arcpy.Exists(gdb_path + "/all_sites"):
&amp;nbsp; #backup existing
&amp;nbsp; print "&amp;nbsp; Backing up existing features..."
&amp;nbsp; arcpy.CopyFeatures_management(gdb_path + "/all_sites", gdb_path + "/all_sites_backup")
&amp;nbsp; arcpy.Delete_management(gdb_path + "/all_sites")
&amp;nbsp; 
 #project event layer points to web mercator
 print "&amp;nbsp; Projecting feature class..."
 projectFeaturesResult = arcpy.Project_management("nwis_sites", gdb_path + "/all_sites", rootpath + "/webmerc.prj")
 print projectFeaturesResult.getMessages()
 
except Exception, e:
 # If an error occurred, print line number and error message
 tb = sys.exc_info()[2]
 print "Failed at step 1 \n" "Line %i" % tb.tb_lineno
 print e.message&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Successful output running on Windows, ArcGIS Desktop 10.1 SP1:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;nbsp;&amp;nbsp; Copying CSV to fgdb table...
Executing: TableToTable C:\NYBackup\NWIS_mapper\test/sitelist.csv C:\NYBackup\NWIS_mapper\test/NWISSites.gdb sitelist # "site_no "site_no" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_no,-1,-1;site_name "site_name" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_name,-1,-1;site_cat "site_cat" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_cat,-1,-1;site_agc "site_agc" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_agc,-1,-1;site_status "site_status" true true false 255 Text 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_status,-1,-1;site_lng "site_lng" true true false 8 Double 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_lng,-1,-1;site_lat "site_lat" true true false 8 Double 0 0 ,First,#,C:\NYBackup\NWIS_mapper\test/sitelist.csv,site_lat,-1,-1" #
Start Time: Wed Jan 02 19:28:57 2013
Succeeded at Wed Jan 02 19:30:29 2013 (Elapsed Time: 1 minutes 32 seconds)
&amp;nbsp; Creating event layer...
Executing: MakeXYEventLayer C:\NYBackup\NWIS_mapper\test/NWISSites.gdb/sitelist site_lng site_lat nwis_sites "GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];-400 -400 1000000000;-100000 10000;-100000 10000;8.98315284119522E-09;0.001;0.001;IsHighPrecision" #
Start Time: Wed Jan 02 19:03:58 2013
Succeeded at Wed Jan 02 19:04:09 2013 (Elapsed Time: 11.00 seconds)
&amp;nbsp; Projecting feature class...
Executing: Project nwis_sites C:\NYBackup\NWIS_mapper\test\NWISSites.gdb\all_sites PROJCS['WGS_1984_Web_Mercator_Auxiliary_Sphere',GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Mercator_Auxiliary_Sphere'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',0.0],PARAMETER['Central_Meridian',0.0],PARAMETER['Standard_Parallel_1',0.0],PARAMETER['Auxiliary_Sphere_Type',0.0],UNIT['Meter',1.0]] # GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]
Start Time: Wed Jan 02 19:04:12 2013
Succeeded at Wed Jan 02 19:06:37 2013 (Elapsed Time: 2 minutes 25 seconds)
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the failed output on the linux ArcGIS for Server 10.1 SP1, same exact folder and input CSV copied over to linux.&amp;nbsp; File permissions should be an issue since all files are owned by the "arcgis" user:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt; Copying CSV to fgdb table...
Executing: TableToTable Z:\gisdata\data\NWIS\python\sitelist.csv Z:\gisdata\data\NWIS\python\NWISSites.gdb sitelist # "site_no "site_no" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_no,-1,-1;site_name "site_name" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_name,-1,-1;site_cat "site_cat" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_cat,-1,-1;site_agc "site_agc" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_agc,-1,-1;site_status "site_status" true true false 255 Text 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_status,-1,-1;site_lng "site_lng" true true false 8 Double 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_lng,-1,-1;site_lat "site_lat" true true false 8 Double 0 0 ,First,#,Z:\gisdata\data\NWIS\python\sitelist.csv,site_lat,-1,-1" #
Start Time: Wed Jan&amp;nbsp; 2 19:06:27 2013
WARNING 000117: Warning empty output generated.
Succeeded at Wed Jan&amp;nbsp; 2 19:08:00 2013 (Elapsed Time: 1 minutes 33 seconds)
&amp;nbsp; Creating event layer...
Executing: MakeXYEventLayer Z:\gisdata\data\NWIS\python/NWISSites.gdb/sitelist site_lng site_lat nwis_sites "GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]];-400 -400 1000000000;-100000 10000;-100000 10000;8.98315284119521E-09;0.001;0.001;IsHighPrecision" #
Start Time: Wed Jan&amp;nbsp; 2 19:08:00 2013
Succeeded at Wed Jan&amp;nbsp; 2 19:08:01 2013 (Elapsed Time: 1.00 seconds)
&amp;nbsp; Projecting feature class...
Executing: Project nwis_sites Z:\gisdata\data\NWIS\python\NWISSites.gdb\all_sites PROJCS['WGS_1984_Web_Mercator_Auxiliary_Sphere',GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Mercator_Auxiliary_Sphere'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',0.0],PARAMETER['Central_Meridian',0.0],PARAMETER['Standard_Parallel_1',0.0],PARAMETER['Auxiliary_Sphere_Type',0.0],UNIT['Meter',1.0]] # GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]
Start Time: Wed Jan&amp;nbsp; 2 19:08:06 2013
Succeeded at Wed Jan&amp;nbsp; 2 19:08:07 2013 (Elapsed Time: 1.00 seconds)
&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for any help&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jan 2013 22:18:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/arcpy-on-linux-ags-10-1-tabletotable-amp-quot/m-p/73626#M2855</guid>
      <dc:creator>MartynSmith</dc:creator>
      <dc:date>2013-01-02T22:18:53Z</dc:date>
    </item>
  </channel>
</rss>

