<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://orourke.tv/web/lib/exe/css.php?s=feed" type="text/css"?>
<rss version="2.0">
    <channel xmlns:g="http://base.google.com/ns/1.0">
        <title>orourke.tv - tech-notes:scripts</title>
        <description>every banana has 5 sides</description>
        <link>http://orourke.tv/web/</link>
        <lastBuildDate>Sat, 20 Jun 2026 00:20:44 +0000</lastBuildDate>
        <generator>FeedCreator 1.8</generator>
        <image>
            <url>http://orourke.tv/web/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
            <title>orourke.tv</title>
            <link>http://orourke.tv/web/</link>
        </image>
        <item>
            <title>add-default-route-of-a-dns-hostname</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:add-default-route-of-a-dns-hostname&amp;rev=1526583893&amp;do=diff</link>
            <description>Add Default Route of a DNS hostname


@echo off
for /f &quot;tokens=1,2 delims=[]&quot; %%A in (&#039;ping purplepi.mooo.com -n 1^| find &quot;Pinging&quot;&#039;) do set ipaddress=%%B
route add %ipaddress% mask 255.255.255.255 192.168.255.1
ping 127.0.0.1 -n 5 &gt;NUL</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:04:53 +0000</pubDate>
        </item>
        <item>
            <title>bulk-audio-channel2</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:bulk-audio-channel2&amp;rev=1697187213&amp;do=diff</link>
            <description>Bulk Remove Left Channel WAV files

retain channel 2 from Audio files

The SOX command to remove channel 1 and retain channel 2 is the remix option:

sox &lt;original-audio-file&gt; &lt;new-audio-file&gt; remix 2

This example would trim from 0 seconds to 60 seconds.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Fri, 13 Oct 2023 08:53:33 +0000</pubDate>
        </item>
        <item>
            <title>bulk-audio-trim</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:bulk-audio-trim&amp;rev=1697134624&amp;do=diff</link>
            <description>Bulk Trim wav files

Trim Audio files - 60 seconds

The SOX command to trim an audio file is:

sox &lt;name-of-audio-file&gt; &lt;name-of-timmed-audio-file&gt; trim 0 60

This example would trim from 0 seconds to 60 seconds.


@echo off
path=%path%;C:\Program Files (x86)\sox-14-4-2
cls

set confirm=N
echo ***************************
echo Audio ALAW Converting tool
echo ***************************
echo The sox.exe must be located in the current folder or on the OS PATH.
echo Download sox from http://sox.sour…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 12 Oct 2023 18:17:04 +0000</pubDate>
        </item>
        <item>
            <title>bulk-ivr-normize</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:bulk-ivr-normize&amp;rev=1526583897&amp;do=diff</link>
            <description>Bulk IVR Normalize wav files

IVR audio files should on average have a max volume of 50% which is -6dB
This batch file uses the command line utility sox to normlizes wav files within a folder and sub folder to this level.

Prior to using this batch file include sox.
Note: You may need to adjust Sox folder in the PATH in the batch depending on Sox version.</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:04:57 +0000</pubDate>
        </item>
        <item>
            <title>convert-raw-alaw</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:convert-raw-alaw&amp;rev=1757930913&amp;do=diff</link>
            <description>Convert raw to A-Law

Note

	*  f → each file that matches *.pcm
  - &quot;f“ → the full filename (e.g. input.pcm)
	*  ~nf → just the name without extension (e.g. input)
  - &quot;~nf.wav” → builds the output filename with .wav


: Gerard O&#039;Rourke
: Michael Brophy
: Version 1.1

@echo off
cls

set confirm=N
echo ***************************
echo Audio ALAW Converting tool
echo ***************************
echo The sox.exe must be located in the current folder or on the OS PATH.
echo Download sox from http:/…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 15 Sep 2025 10:08:33 +0000</pubDate>
        </item>
        <item>
            <title>convert-to-8k</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:convert-to-8k&amp;rev=1526583902&amp;do=diff</link>
            <description>Bulk Convert Batch file for converting to 8K





@echo off

: Gerard O&#039;Rourke
: Michael Brophy
: Version 1.1


:::::: UPDATE BELOW to the CORRECT FOLDER NAME :::::::
set SOX-FOLDER=C:\Program Files (x86)\sox-14-4-1\
set PATH=%PATH%;%SOX-FOLDER%

cls

set confirm=N
echo *************************************
echo Converting tool - to 8K Sampling Rate
echo *************************************
echo echo Download sox from http://sox.sourceforge.net/
echo ********************************************…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:02 +0000</pubDate>
        </item>
        <item>
            <title>convert-to-ulaw</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:convert-to-ulaw&amp;rev=1526583907&amp;do=diff</link>
            <description>Bulk Convert Batch file for converting to Ulaw





: Gerard O&#039;Rourke
: Michael Brophy
: Version 1.1

@echo off
cls

set confirm=N
echo ***************************
echo Audio Mu-LAW (Ulaw) Converting tool
echo ***************************
echo The sox.exe must be located in the current folder or on the OS PATH.
echo Download sox from http://sox.sourceforge.net/
echo ******************************************************************
echo. 
set /P confirm=Do you want to proceed and overwrite and co…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:07 +0000</pubDate>
        </item>
        <item>
            <title>convert-ulaw-to-alaw</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:convert-ulaw-to-alaw&amp;rev=1527411693&amp;do=diff</link>
            <description>Bulk Convert Batch file for converting Ulaw to Alaw





: Gerard O&#039;Rourke
: Michael Brophy
: Version 1.1

@echo off
cls

set confirm=N
echo ***************************
echo Audio ALAW Converting tool
echo ***************************
echo The sox.exe must be located in the current folder or on the OS PATH.
echo Download sox from http://sox.sourceforge.net/
echo ******************************************************************
echo. 
set /P confirm=Do you want to proceed and overwrite and conver…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Sun, 27 May 2018 09:01:33 +0000</pubDate>
        </item>
        <item>
            <title>copy-cvp-media</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:copy-cvp-media&amp;rev=1558531196&amp;do=diff</link>
            <description>Copy Media Files for CVP

This script will copy files from the A side Server to teh B side server.
It will only copy files that do not exist or are newer on the A side


: Gerard O&#039;Rourke
: 20/08/2016
: Copy Audio Files from A to B side

@echo off
cls
echo =========== MEDIA FILES =============
echo.
echo *************************************
echo * Warning this file will copy files *
echo * from the A side to B side server  *
echo * Only Later Modified files will be *
echo * copied			    *
echo …</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 22 May 2019 13:19:56 +0000</pubDate>
        </item>
        <item>
            <title>copycallbackstologger</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:copycallbackstologger&amp;rev=1526583915&amp;do=diff</link>
            <description>Copy Callbacks to Logger


@echo off
: Gerard O&#039;Rourke
: version 1.0
: Date 13/10/2017

SET IMPORTFILE=SystemTest.csv
SET CALLBACKFILTERFILES=SystemTest

SET LOGGERA=UCCE-RGR-A
SET IMPORTSHARE=\\%LOGGERA%\DialerImport\
SET CALLBACKFOLDER=C:\X-Callbacks\
SET CALLBACKFILTER=Callback

SET TEMPFILE=%CALLBACKFOLDER%\%CALLBACKFILTERFILES%-Temp.csv

: ***********************************************************************


:Check if Logger is up before Proceeding
REM One Ping First to get it in ARP Ta…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:15 +0000</pubDate>
        </item>
        <item>
            <title>cvp</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:cvp&amp;rev=1526583915&amp;do=diff</link>
            <description>Copy files from One Media Server to the other(s)

This script will copy only later modifed files from A sever to B server.


: Gerard O&#039;Rourke
: 20/08/2016
: Copy Audio Files from A to B side

@echo off
cls
echo *************************************
echo * Warning this file will copy files *
echo * from the A side to B side server  *
echo * Only Later Modified files will be *
echo * copied			    *
echo *************************************
echo.

set confirm=N
set /P confirm=Do you want to proce…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:15 +0000</pubDate>
        </item>
        <item>
            <title>date-time</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:date-time&amp;rev=1526583915&amp;do=diff</link>
            <description>Timestamp Batch file


FOR /F &quot;TOKENS=1 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET dd=%%A
FOR /F &quot;TOKENS=1,2 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET mm=%%B
FOR /F &quot;TOKENS=1,2,3 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET yyyy=%%C

SET mydate=%yyyy%%mm%%dd%</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:15 +0000</pubDate>
        </item>
        <item>
            <title>delete-files-older-than</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:delete-files-older-than&amp;rev=1560331005&amp;do=diff</link>
            <description>Delete Files older than X days

Example Delete all files with starting with blah in Folder “FolderName” older than 30 days.


forfiles -p C:\FolderName -m blah*.* /d -30 -c &quot;cmd /c del @path&quot;


Newer Windows use slightly different parameters - e.g. Windows 2012</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 12 Jun 2019 09:16:45 +0000</pubDate>
        </item>
        <item>
            <title>dial-peer-config</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:dial-peer-config&amp;rev=1551804661&amp;do=diff</link>
            <description>Convert voice Dial-peer config into a CSV Table

Initial

	*  install sed for windows
	*  get the running config of router(s)

Batch file


: Author Gerard O&#039;Rourke
: Date 05/03/2019
: To export Dial-peer config into table format

: Note cannot handle dial-peer config which contain 
: a single quote (two quotes are ok) or &quot;&amp;&quot;

cls
@echo off
REM Setting a Timestamp variable which can be used in a batch file
FOR /f &quot;tokens=1-4 delims=/ &quot; %%A IN (&#039;date /t&#039;) DO (
set nday=%%A
set nmonth=%%B
set nyea…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 05 Mar 2019 16:51:01 +0000</pubDate>
        </item>
        <item>
            <title>home</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:home&amp;rev=1715775412&amp;do=diff</link>
            <description>Scripts

Regex

	* &lt;http://rexegg.com/regex-best-trick.html&gt;

Convert from G723 to G711 using FFMPEG

 ffmpeg -i 888001000029999.wav -c:a pcm_alaw output1.wav 

	* top-tips
	* mask-password-in-a-batch-file
	* ping
	* cvp
	* simple-ping-timestamp
	* putty-login
	* Bulk Convert Audio to Alaw
	* Bulk Convert Audio to ulaw
	* Bulk Convert Audio to 8K Sampling Rate
	* Bulk Normalise wav files to -6dB for an IVR
	* Bulk Trim Wav Files for just the first 60 seconds
	* Bulk Remove Left Channel from Audi…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 15 May 2024 12:16:52 +0000</pubDate>
        </item>
        <item>
            <title>mask-password-in-a-batch-file</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:mask-password-in-a-batch-file&amp;rev=1526583916&amp;do=diff</link>
            <description>mask a password inputed in a batch file


@echo off
powershell -Command $pword = read-host &quot;Enter password&quot; -AsSecureString ; $BSTR=[System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($pword) ; [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR) &gt; .tmp.txt &amp; set /p password=&lt;.tmp.txt &amp; del .tmp.txt
echo %password%</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:16 +0000</pubDate>
        </item>
        <item>
            <title>ping</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:ping&amp;rev=1710156891&amp;do=diff</link>
            <description>PING Scripts

Bulk Ping


@echo off
:start
cls

set mypath=%cd%
FOR /F %%i IN (%mypath%\IPaddresses.conf) DO (
ping %%i -n 1 -w 2000 | find &quot;TTL&quot; || echo %%i is DOWN
)

pause
goto start



192.168.1.1
192.168.1.2
192.168.1.3
192.168.1.4


Ping test


start &quot;ping-test&quot; ping 1.1.1.1 -t
start &quot;ping-test&quot; ping 8.8.8.8 -t</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Mon, 11 Mar 2024 11:34:51 +0000</pubDate>
        </item>
        <item>
            <title>putty-login</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:putty-login&amp;rev=1526583917&amp;do=diff</link>
            <description>Putty command line Login

Create a two files, a config file and a batch file as in below example

 config.cmd 


@echo off

set PATH=%PATH%;C:\PuttyFolder\
set USERNAME=username1
set PASSWORD=

set /P USERNAME=Enter Username [%USERNAME%]?
REM Password below can be seen on screen so deprecate this version and use alterntive
REM set /P PASSWORD=Enter Password [%PASSWORD%]?

REM Powershell command below **** out the password on screen.
powershell -Command $pword = read-host &quot;Enter password&quot; -AsSecu…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:17 +0000</pubDate>
        </item>
        <item>
            <title>simple-ping-timestamp</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:simple-ping-timestamp&amp;rev=1526583917&amp;do=diff</link>
            <description>simple Ping with timestamp



Copy and paste below into a batch file, e.g. “test-ping.cmd”

Edit the Address value to the host you want to ping


@echo off
: Gerard ORourke
: simple PING with Timestamp

set ADDRESS=127.0.0.1
Set COUNT=60
set FILENAME=Output-PING.txt

echo Ping Started. Pinging Address: %ADDRESS%
echo Please Check Output File %FILENAME% to confirm Ping test is OK

:start
echo. &gt;&gt; %FILENAME%%
echo *********************&gt;&gt; %FILENAME%%
echo %date% &gt;&gt; %FILENAME%% 
echo %time% &gt;&gt; %FILE…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:17 +0000</pubDate>
        </item>
        <item>
            <title>simplesqlscript</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:simplesqlscript&amp;rev=1526583917&amp;do=diff</link>
            <description>Simple SQL Script

Batch file


@echo off

: Gerard O&#039;Rourke
: Date 13/09/2016
:

FOR /F &quot;TOKENS=1 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET dd=%%A
FOR /F &quot;TOKENS=1,2 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET mm=%%B
FOR /F &quot;TOKENS=1,2,3 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET yyyy=%%C

SET /P dd=Please enter Day (dd) [%dd%]?
SET /P mm=Please enter Month (mm) [%mm%]?
SET /P yyyy=Please enter Year (yyyy) [%yyyy%]?

echo RUNNING SQL QUERY
echo.
call sqlcmd -v mydate=&quot;%yyyy%-%mm%-%dd%&quot; -i SamplePr…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:17 +0000</pubDate>
        </item>
        <item>
            <title>sql-backup</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:sql-backup&amp;rev=1526583918&amp;do=diff</link>
            <description>Backup SQL database


sqlcmd -Q &quot;BACKUP DATABASE &lt;mydatabase&gt; TO DISK=&#039;C:\Backup\mydatabase.bak&#039;&quot; 


Example of a script which backs up database with today&#039;s date and moves to a network folder.


@echo off
set LOGFILE=SQL-ScriptBackup.log
set DBNAME=cvp_dn_config
set BACKUP-FOLDER=D:\X-Backup



FOR /f &quot;tokens=1-4 delims=/ &quot; %%A IN (&#039;date /t&#039;) DO (
set nday=%%A
set nmonth=%%B
set nyear=%%C
)
set SORTDATE=%nyear%%nmonth%%nday%

FOR /f &quot;tokens=1-2 delims=: &quot; %%A IN (&#039;time /t&#039;) DO (
set hour=%%A
se…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:18 +0000</pubDate>
        </item>
        <item>
            <title>sql-restore</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:sql-restore&amp;rev=1526583918&amp;do=diff</link>
            <description>SQL Restore script


sqlcmd -Q &quot;RESTORE DATABASE &lt;database-name&gt; FROM DISK=&lt;database-backup-file&gt; WITH REPLACE&quot;


Simple Example


sqlcmd -Q &quot;RESTORE DATABASE mydatabase FROM DISK=C:\Backup\mydatabase.bak WITH REPLACE&quot;


Example script which restores a backup file with today date, and then deletes backup files older than 30 days</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:18 +0000</pubDate>
        </item>
        <item>
            <title>time-elapsed</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:time-elapsed&amp;rev=1526583918&amp;do=diff</link>
            <description>Time Elapsed

Aacini Code from here


@echo off

rem Get start time:
for /F &quot;tokens=1-4 delims=:.,&quot; %%a in (&quot;%time%&quot;) do (
   set /A &quot;start=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100&quot;
)

rem Any process here...

rem Get end time:
for /F &quot;tokens=1-4 delims=:.,&quot; %%a in (&quot;%time%&quot;) do (
   set /A &quot;end=(((%%a*60)+1%%b %% 100)*60+1%%c %% 100)*100+1%%d %% 100&quot;
)

rem Get elapsed time:
set /A elapsed=end-start

rem Show elapsed time:
set /A hh=elapsed/(60*60*100), rest=elapsed%%(60*60*100),…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Thu, 17 May 2018 19:05:18 +0000</pubDate>
        </item>
        <item>
            <title>top-tips</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:top-tips&amp;rev=1551795169&amp;do=diff</link>
            <description>Batch file Top tips

echo without a new line - e.g. use &quot;.&quot; to show progress in a loop


echo | set /p=.


ENABLEDELAYEDEXPANSION

Use in FOR loops to get variable as it is set there (rather than a parse time) - need to use !var! rather than %var% 
Google it!
But any scripts with a ! get messed up!</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 05 Mar 2019 14:12:49 +0000</pubDate>
        </item>
        <item>
            <title>ucce</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:ucce&amp;rev=1537889088&amp;do=diff</link>
            <description>UCCE - dumplog scripts


@echo off

: Gerard O&#039;Rourke
: 24/02/2009
: Version 4.1

set icm-cust-name=icm
set icmPG=2A
set mylogdir=D:\Xtemp
set hour=00
set min=00


:Calcutate DATE
FOR /f &quot;tokens=1-4 delims=/ &quot; %%A IN (&#039;date /t&#039;) DO (
set nday=%%A
set nmonth=%%B
set nyear=%%C
)

set SORTDATE=%nyear%%nmonth%%nday%
set begindate=%nmonth%/%nday%/%nyear%


echo Simple ICM Utility to collect PIM, OPC, CTI Server and CTIOS Logs
echo -----------------------------------------------------------------
echo…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Tue, 25 Sep 2018 15:24:48 +0000</pubDate>
        </item>
        <item>
            <title>wfm</title>
            <link>http://orourke.tv/web/doku.php?id=tech-notes:scripts:wfm&amp;rev=1715775451&amp;do=diff</link>
            <description>WFM Script

Doesn&#039;t include the SQL


FOR /F &quot;TOKENS=1 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET dd=%%A
FOR /F &quot;TOKENS=1,2 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET mm=%%B
FOR /F &quot;TOKENS=1,2,3 eol=/ DELIMS=/ &quot; %%A IN (&#039;DATE/T&#039;) DO SET yyyy=%%C

REM Set Date to Today
SET mydate-ymd=%yyyy%%mm%%dd%
SET /A yy=%yyyy%-2000
SET mydate-dmy=%dd%%mm%%yy%


REM ========= SET DIRECTORY HERE ==============
SET mylocalpath=C:\X-Support\SheduledTask\Daily\
SET mypath=\\server\blah
SET myfilename=filename_%myda…</description>
            <author>anonymous@undisclosed.example.com (Anonymous)</author>
            <pubDate>Wed, 15 May 2024 12:17:31 +0000</pubDate>
        </item>
    </channel>
</rss>
