<?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 Script tool Value error in ArcGIS Spatial Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/script-tool-value-error/m-p/603692#M8784</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello. I've been struggling to get my script tool to run without receiving the following error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000735: Output Layer: Value is required&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (SaveToLayerFile)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The script processes fine when run in PythonWin, it is only the script tool that is giving me the problem. I'm not understanding what kind of "value" it is looking for for an "Output"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The following is my script and the line it is choking on is highlighted in red. Can anyone enlighten me as to why it does not like this? It is defined in the script tool as a layer file data type, with a derived/output property type/direction. Thanks in advance:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
from arcpy.sa import *

# Set the current workspace
env.workspace = arcpy.GetParameterAsText(0)

#Define variables
snowAmt_In = "SnowAmt_in"
snowAmt_Cm = "SnowAmt_cm"
contourInterval = arcpy.GetParameterAsText(1)
numberZones = arcpy.GetParameterAsText(2)
OKX = arcpy.GetParameterAsText(3)
OKXcounties = arcpy.GetParameterAsText(4)
contoursClipLyr = arcpy.GetParameterAsText(5)
clipOKXLyr = arcpy.GetParameterAsText(6)
contoursSymb = arcpy.GetParameterAsText(7)
rasterSymb = arcpy.GetParameterAsText(8)
contourLabelText = arcpy.GetParameterAsText(9)
mxd = arcpy.GetParameterAsText(10)
mxd1 = arcpy.mapping.MapDocument(mxd)
mxdSave = arcpy.GetParameterAsText(11)
gdb = arcpy.GetParameterAsText(12)
df = arcpy.mapping.ListDataFrames(mxd1)[0]
contourLabel = arcpy.GetParameterAsText(13)

# add field for cm

try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddField_management ("dec2009data", snowAmt_Cm, "float", "5", "2")

except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field already exists"

# Make a feature layer for "dec2009data"
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeFeatureLayer_management ("dec2009data", "dec2009dataLayer")

except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "File already exists"

#Create update cursor for the SnowAmt_Cm field
snowCmRows = arcpy.UpdateCursor("dec2009data")
snowCm = snowCmRows.next()

while snowCm:
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowInch = snowCm.getValue(snowAmt_In)
&amp;nbsp;&amp;nbsp;&amp;nbsp; #convert inches to cm
&amp;nbsp;&amp;nbsp;&amp;nbsp; multiplier = 2.54
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowInCm = snowInch * multiplier
&amp;nbsp;&amp;nbsp;&amp;nbsp; #print snowInCm

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Write the snow amount (cm) to SnowAmt_Cm field&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowCm.setValue(snowAmt_Cm, snowInCm)
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowCmRows.updateRow(snowCm)
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowCm = snowCmRows.next()

# Remove temp layer&amp;nbsp; 
arcpy.Delete_management("dec2009dataLayer")&amp;nbsp;&amp;nbsp; 

del snowCm, snowCmRows


# Interpolate point data

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")

try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute Natural Neighbor
&amp;nbsp;&amp;nbsp;&amp;nbsp; outNatNbr = NaturalNeighbor("dec2009data", snowAmt_Cm)
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Save the output
&amp;nbsp;&amp;nbsp;&amp;nbsp; outNatNbr.save("outNatNei")
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "the natural neighbor interpolation file already exists"



# Add contours to the raster
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute Contour tool
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; Contour("outNatNei", "contours", contourInterval)
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "the contour file already exists"



#Clip contours to OKX CWA boundary
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute vector Clip tool
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Clip_analysis("contours", OKX, "contoursClip")
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "clipped contours file already exists"
&amp;nbsp;&amp;nbsp; 

&amp;nbsp;&amp;nbsp; 
#Slice the raster data into a range of values of equal interval zones
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute Slice tool
outSlice = Slice("outNatNei", numberZones, "EQUAL_INTERVAL")
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Save the output
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; outSlice.save("dec2009Slice")
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "the slice file already exists"

#Clip sliced raster data to defined boundary around OKX CWA
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute raster Clip tool
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Clip_management("dec2009Slice", "-74.79081276 40.47313532 -71.74223316 41.73718052", \
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "clipOKX", OKX, "", "ClippingGeometry")
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Clip raster to OKX CWA boundary failed."
&amp;nbsp; 
# Check in the ArcGIS Spatial Analyst extension license
arcpy.CheckInExtension("Spatial")


#Apply symbology

# Make feature layer for contours save it and apply symbology layer
#try:
arcpy.MakeFeatureLayer_management("contoursClip", "contoursClipLayer")
arcpy.ApplySymbologyFromLayer_management("contoursClipLayer", contoursSymb)
arcpy.SaveToLayerFile_management("contoursClipLayer", contoursClipLyr)
#except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; #print "make feature layer/apply symbology for contours failed."

# Apply label to contours
#try:
arcpy.ContourAnnotation_cartography (contoursClipLyr, gdb, "Contour", \
&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; "2000000", contourLabel)
arcpy.SaveToLayerFile_management(contourLabel, contourLabelText)
#except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; #print "apply labels to contours failed."

# Make feature layer for raster dataset save it and apply symbology layer
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeRasterLayer_management("clipOKX", "clipOKXLayer")
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ApplySymbologyFromLayer_management("clipOKXLayer", rasterSymb)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SaveToLayerFile_management("clipOKXLayer", clipOKXLyr)
&amp;nbsp;&amp;nbsp; 
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "make feature layer/apply symbology for raster failed."

#Add layers into map document
addLayer = arcpy.mapping.Layer(OKXcounties)
addLayer1 = arcpy.mapping.Layer(contourLabelText)
addLayer2 = arcpy.mapping.Layer(contoursClipLyr)
addLayer3 = arcpy.mapping.Layer(clipOKXLyr)
arcpy.mapping.AddLayer(df, addLayer, "AUTO_ARRANGE")
arcpy.mapping.AddLayer(df, addLayer1, "AUTO_ARRANGE")
arcpy.mapping.AddLayer(df, addLayer2, "AUTO_ARRANGE")
arcpy.mapping.AddLayer(df, addLayer3, "AUTO_ARRANGE")

# Add contour Labels
for lyr in arcpy.mapping.ListLayers(mxd1):
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.name == "contourLabelText":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.showLabels = True
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.name == "Contour Features":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.transparency = 100

for df in arcpy.mapping.ListDataFrames(mxd1):
&amp;nbsp;&amp;nbsp;&amp;nbsp; df.scale = 2000000
&amp;nbsp;&amp;nbsp; 
#Save to a new map document and clear variable references
mxd1.saveACopy(mxdSave)
del mxd1

print "finished"&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 16:41:06 GMT</pubDate>
    <dc:creator>Michele</dc:creator>
    <dc:date>2021-12-12T16:41:06Z</dc:date>
    <item>
      <title>Script tool Value error</title>
      <link>https://community.esri.com/t5/arcgis-spatial-analyst-questions/script-tool-value-error/m-p/603692#M8784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello. I've been struggling to get my script tool to run without receiving the following error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;class 'arcgisscripting.ExecuteError'&amp;gt;: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000735: Output Layer: Value is required&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (SaveToLayerFile)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The script processes fine when run in PythonWin, it is only the script tool that is giving me the problem. I'm not understanding what kind of "value" it is looking for for an "Output"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The following is my script and the line it is choking on is highlighted in red. Can anyone enlighten me as to why it does not like this? It is defined in the script tool as a layer file data type, with a derived/output property type/direction. Thanks in advance:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
from arcpy.sa import *

# Set the current workspace
env.workspace = arcpy.GetParameterAsText(0)

#Define variables
snowAmt_In = "SnowAmt_in"
snowAmt_Cm = "SnowAmt_cm"
contourInterval = arcpy.GetParameterAsText(1)
numberZones = arcpy.GetParameterAsText(2)
OKX = arcpy.GetParameterAsText(3)
OKXcounties = arcpy.GetParameterAsText(4)
contoursClipLyr = arcpy.GetParameterAsText(5)
clipOKXLyr = arcpy.GetParameterAsText(6)
contoursSymb = arcpy.GetParameterAsText(7)
rasterSymb = arcpy.GetParameterAsText(8)
contourLabelText = arcpy.GetParameterAsText(9)
mxd = arcpy.GetParameterAsText(10)
mxd1 = arcpy.mapping.MapDocument(mxd)
mxdSave = arcpy.GetParameterAsText(11)
gdb = arcpy.GetParameterAsText(12)
df = arcpy.mapping.ListDataFrames(mxd1)[0]
contourLabel = arcpy.GetParameterAsText(13)

# add field for cm

try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddField_management ("dec2009data", snowAmt_Cm, "float", "5", "2")

except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Field already exists"

# Make a feature layer for "dec2009data"
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeFeatureLayer_management ("dec2009data", "dec2009dataLayer")

except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "File already exists"

#Create update cursor for the SnowAmt_Cm field
snowCmRows = arcpy.UpdateCursor("dec2009data")
snowCm = snowCmRows.next()

while snowCm:
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowInch = snowCm.getValue(snowAmt_In)
&amp;nbsp;&amp;nbsp;&amp;nbsp; #convert inches to cm
&amp;nbsp;&amp;nbsp;&amp;nbsp; multiplier = 2.54
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowInCm = snowInch * multiplier
&amp;nbsp;&amp;nbsp;&amp;nbsp; #print snowInCm

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Write the snow amount (cm) to SnowAmt_Cm field&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowCm.setValue(snowAmt_Cm, snowInCm)
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowCmRows.updateRow(snowCm)
&amp;nbsp;&amp;nbsp;&amp;nbsp; snowCm = snowCmRows.next()

# Remove temp layer&amp;nbsp; 
arcpy.Delete_management("dec2009dataLayer")&amp;nbsp;&amp;nbsp; 

del snowCm, snowCmRows


# Interpolate point data

&amp;nbsp;&amp;nbsp;&amp;nbsp; # Check out the ArcGIS Spatial Analyst extension license
arcpy.CheckOutExtension("Spatial")

try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute Natural Neighbor
&amp;nbsp;&amp;nbsp;&amp;nbsp; outNatNbr = NaturalNeighbor("dec2009data", snowAmt_Cm)
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Save the output
&amp;nbsp;&amp;nbsp;&amp;nbsp; outNatNbr.save("outNatNei")
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "the natural neighbor interpolation file already exists"



# Add contours to the raster
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute Contour tool
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; Contour("outNatNei", "contours", contourInterval)
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "the contour file already exists"



#Clip contours to OKX CWA boundary
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute vector Clip tool
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Clip_analysis("contours", OKX, "contoursClip")
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "clipped contours file already exists"
&amp;nbsp;&amp;nbsp; 

&amp;nbsp;&amp;nbsp; 
#Slice the raster data into a range of values of equal interval zones
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute Slice tool
outSlice = Slice("outNatNei", numberZones, "EQUAL_INTERVAL")
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Save the output
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; outSlice.save("dec2009Slice")
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "the slice file already exists"

#Clip sliced raster data to defined boundary around OKX CWA
&amp;nbsp;&amp;nbsp;&amp;nbsp; # Execute raster Clip tool
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Clip_management("dec2009Slice", "-74.79081276 40.47313532 -71.74223316 41.73718052", \
&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "clipOKX", OKX, "", "ClippingGeometry")
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Clip raster to OKX CWA boundary failed."
&amp;nbsp; 
# Check in the ArcGIS Spatial Analyst extension license
arcpy.CheckInExtension("Spatial")


#Apply symbology

# Make feature layer for contours save it and apply symbology layer
#try:
arcpy.MakeFeatureLayer_management("contoursClip", "contoursClipLayer")
arcpy.ApplySymbologyFromLayer_management("contoursClipLayer", contoursSymb)
arcpy.SaveToLayerFile_management("contoursClipLayer", contoursClipLyr)
#except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; #print "make feature layer/apply symbology for contours failed."

# Apply label to contours
#try:
arcpy.ContourAnnotation_cartography (contoursClipLyr, gdb, "Contour", \
&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; "2000000", contourLabel)
arcpy.SaveToLayerFile_management(contourLabel, contourLabelText)
#except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; #print "apply labels to contours failed."

# Make feature layer for raster dataset save it and apply symbology layer
try:
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.MakeRasterLayer_management("clipOKX", "clipOKXLayer")
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ApplySymbologyFromLayer_management("clipOKXLayer", rasterSymb)
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.SaveToLayerFile_management("clipOKXLayer", clipOKXLyr)
&amp;nbsp;&amp;nbsp; 
except:
&amp;nbsp;&amp;nbsp;&amp;nbsp; print "make feature layer/apply symbology for raster failed."

#Add layers into map document
addLayer = arcpy.mapping.Layer(OKXcounties)
addLayer1 = arcpy.mapping.Layer(contourLabelText)
addLayer2 = arcpy.mapping.Layer(contoursClipLyr)
addLayer3 = arcpy.mapping.Layer(clipOKXLyr)
arcpy.mapping.AddLayer(df, addLayer, "AUTO_ARRANGE")
arcpy.mapping.AddLayer(df, addLayer1, "AUTO_ARRANGE")
arcpy.mapping.AddLayer(df, addLayer2, "AUTO_ARRANGE")
arcpy.mapping.AddLayer(df, addLayer3, "AUTO_ARRANGE")

# Add contour Labels
for lyr in arcpy.mapping.ListLayers(mxd1):
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.name == "contourLabelText":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.showLabels = True
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.name == "Contour Features":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.transparency = 100

for df in arcpy.mapping.ListDataFrames(mxd1):
&amp;nbsp;&amp;nbsp;&amp;nbsp; df.scale = 2000000
&amp;nbsp;&amp;nbsp; 
#Save to a new map document and clear variable references
mxd1.saveACopy(mxdSave)
del mxd1

print "finished"&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:41:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-spatial-analyst-questions/script-tool-value-error/m-p/603692#M8784</guid>
      <dc:creator>Michele</dc:creator>
      <dc:date>2021-12-12T16:41:06Z</dc:date>
    </item>
  </channel>
</rss>

