<?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>article Windows Proxy Configuration in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/Windows-Proxy-Configuration/ta-p/1715712</link>
    <description>&lt;P&gt;Network proxies intercept and analyze traffic. As a security and control mechanism, a proxy can be configured to block certain packages, domains, or protocols. For example, Qlik Sense traffic like web sockets might not be properly allowed, leaving Qlik client-server&amp;nbsp;communication to fail.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Windows Server typically has proxy references in multiple configurations. Understanding the current proxy configuration can be helpful during troubleshooting&amp;nbsp;and temporarily disabling the configuration can help confirm proxy-related issues. Confirming the existence of Internet proxies can also motivate including the local IT team for further troubleshooting of any communication problems.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The below sections show how to confirm the current settings, remove the settings, and restore the settings.&lt;/P&gt;
&lt;P&gt;Environment:&lt;/P&gt;
&lt;P&gt;&lt;LI-PRODUCT title="QlikView" id="qlikView"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-PRODUCT title="Qlik Sense Enterprise on Windows" id="qlikSenseEnterpriseWindows"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Check Windows Proxy Settings&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Run PowerShell terminal as a suitable user
&lt;UL&gt;
&lt;LI&gt;&lt;U&gt;Server-side&lt;/U&gt;: User that runs Qlik services &amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;U&gt;Client-side&lt;/U&gt;: User that is navigating browser&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE class="ckeditor_codeblock"&gt;Start-Process powershell.exe -Credential domain\qlikservice&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Confirm that PowerShell is running as the expected user
&lt;PRE class="ckeditor_codeblock"&gt;whoami&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Get system variables&amp;nbsp;HTTP_PROXY and&amp;nbsp;HTTPS_PROXY, for both current user and local machine
&lt;PRE class="ckeditor_codeblock"&gt;[System.Environment]::GetEnvironmentVariable("HTTP_PROXY","user");
[System.Environment]::GetEnvironmentVariable("HTTP_PROXY","machine");
[System.Environment]::GetEnvironmentVariable("HTTPS_PROXY","user");
[System.Environment]::GetEnvironmentVariable("HTTPS_PROXY","machine");

&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;The returned result shows proxy definition, or empty if no proxy is defined.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="powershell output.png" style="width: 559px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58791i603759248E3AC590/image-size/large?v=v2&amp;amp;px=999" role="button" title="powershell output.png" alt="powershell output.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Get Windows HTTP Services for proxy details&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;netsh winhttp show proxy&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Return result shows proxy definition, or confirm no proxy is defined.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="powershell Direct access no proxy server.png" style="width: 256px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58792i2E3BCF2D83C9BE65/image-size/large?v=v2&amp;amp;px=999" role="button" title="powershell Direct access no proxy server.png" alt="powershell Direct access no proxy server.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Validate that proxy is not set in Internet Options &amp;gt; LAN Settings&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Local Area Network Settings.png" style="width: 392px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58793iCB68BFB257DD857E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Local Area Network Settings.png" alt="Local Area Network Settings.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="DisableProxyinWindowsServer-RemoveSystemVariableshttp_proxyAndhttps_proxy"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Remove Windows Proxy Settings&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;NOTE1: Altering proxy settings should only be done in the context of troubleshooting, and local IT recommendations should be followed.&amp;nbsp;&lt;BR /&gt;NOTE2: Changes to proxy settings in production environments should be done per local IT recommendations.&lt;BR /&gt;TIP: Take notes of settings before removing values, to enable recreating settings later if required.&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Run PowerShell terminal as the same user runs Qlik service.&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;Start-Process powershell.exe -Credential domain\qlikservice&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Confirm that PowerShell is running as the expected user&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="ckeditor_codeblock"&gt;whoami&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Remove HTTP_PROXY and&amp;nbsp;HTTPS_PROXY variables&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;[System.Environment]::SetEnvironmentVariable("HTTPS_PROXY ", "", [System.EnvironmentVariableTarget]::Machine)
[System.Environment]::SetEnvironmentVariable("HTTPS_PROXY ", "", [System.EnvironmentVariableTarget]::User)
[System.Environment]::SetEnvironmentVariable("HTTP_PROXY ", "", [System.EnvironmentVariableTarget]::Machine)
[System.Environment]::SetEnvironmentVariable("HTTP_PROXY ", "", [System.EnvironmentVariableTarget]::User)
&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Remove Windows HTTP Service proxy setting&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;netsh winhttp reset proxy&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Disable IE proxy through Windows Registry&amp;nbsp;&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;New-ItemProperty&amp;nbsp;-Path&amp;nbsp;'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\'&amp;nbsp;-Name&amp;nbsp;ProxyEnable&amp;nbsp;-Value&amp;nbsp;0&amp;nbsp;-Force&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Remove IE proxy address reference&amp;nbsp;through Windows Registry&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;New-ItemProperty&amp;nbsp;-Path&amp;nbsp;'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\'&amp;nbsp;-Name&amp;nbsp;ProxyServer&amp;nbsp;-Value&amp;nbsp;$null&amp;nbsp;-Force&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3 id="DisableProxyinWindowsServer-InternetExplorer(IE)Proxy"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Restore Windows Proxy Settings&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Open Powershell terminal as Administrator&lt;/LI&gt;
&lt;LI&gt;Define&amp;nbsp;HTTP_PROXY and&amp;nbsp;HTTPS_PROXY system variables&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;[System.Environment]::SetEnvironmentVariable("HTTPS_PROXY ", "&amp;lt;MyMachineHttpsProxy&amp;gt;", [System.EnvironmentVariableTarget]::Machine)
[System.Environment]::SetEnvironmentVariable("HTTPS_PROXY ", "&amp;lt;MyUSerHttpsProxy&amp;gt;", [System.EnvironmentVariableTarget]::User)
[System.Environment]::SetEnvironmentVariable("HTTP_PROXY ", "&amp;lt;MyMachineHttpProxy&amp;gt;", [System.EnvironmentVariableTarget]::Machine)
[System.Environment]::SetEnvironmentVariable("HTTP_PROXY ", "&amp;lt;MyUserHttpProxy&amp;gt;", [System.EnvironmentVariableTarget]::User)
&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Set Windows HTTP Service proxy setting&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;netsh winhttp set proxy &amp;lt;proxy&amp;gt;:&amp;lt;port&amp;gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Enable IE proxy through Windows Registry&amp;nbsp;&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;New-ItemProperty&amp;nbsp;-Path&amp;nbsp;'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\'&amp;nbsp;-Name&amp;nbsp;ProxyEnable&amp;nbsp;-Value&amp;nbsp;1&amp;nbsp;-Force&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Enable&amp;nbsp;IE proxy address reference&amp;nbsp;through Windows Registry&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;New-ItemProperty&amp;nbsp;-Path&amp;nbsp;'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\'&amp;nbsp;-Name&amp;nbsp;ProxyServer&amp;nbsp;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;</description>
    <pubDate>Thu, 19 Mar 2026 05:59:20 GMT</pubDate>
    <dc:creator>Lisa_Sun</dc:creator>
    <dc:date>2026-03-19T05:59:20Z</dc:date>
    <item>
      <title>Windows Proxy Configuration</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/Windows-Proxy-Configuration/ta-p/1715712</link>
      <description>&lt;P&gt;Network proxies intercept and analyze traffic. As a security and control mechanism, a proxy can be configured to block certain packages, domains, or protocols. For example, Qlik Sense traffic like web sockets might not be properly allowed, leaving Qlik client-server&amp;nbsp;communication to fail.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Windows Server typically has proxy references in multiple configurations. Understanding the current proxy configuration can be helpful during troubleshooting&amp;nbsp;and temporarily disabling the configuration can help confirm proxy-related issues. Confirming the existence of Internet proxies can also motivate including the local IT team for further troubleshooting of any communication problems.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The below sections show how to confirm the current settings, remove the settings, and restore the settings.&lt;/P&gt;
&lt;P&gt;Environment:&lt;/P&gt;
&lt;P&gt;&lt;LI-PRODUCT title="QlikView" id="qlikView"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;LI-PRODUCT title="Qlik Sense Enterprise on Windows" id="qlikSenseEnterpriseWindows"&gt;&lt;/LI-PRODUCT&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;H3&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Check Windows Proxy Settings&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Run PowerShell terminal as a suitable user
&lt;UL&gt;
&lt;LI&gt;&lt;U&gt;Server-side&lt;/U&gt;: User that runs Qlik services &amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;&lt;U&gt;Client-side&lt;/U&gt;: User that is navigating browser&lt;/LI&gt;
&lt;/UL&gt;
&lt;PRE class="ckeditor_codeblock"&gt;Start-Process powershell.exe -Credential domain\qlikservice&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Confirm that PowerShell is running as the expected user
&lt;PRE class="ckeditor_codeblock"&gt;whoami&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Get system variables&amp;nbsp;HTTP_PROXY and&amp;nbsp;HTTPS_PROXY, for both current user and local machine
&lt;PRE class="ckeditor_codeblock"&gt;[System.Environment]::GetEnvironmentVariable("HTTP_PROXY","user");
[System.Environment]::GetEnvironmentVariable("HTTP_PROXY","machine");
[System.Environment]::GetEnvironmentVariable("HTTPS_PROXY","user");
[System.Environment]::GetEnvironmentVariable("HTTPS_PROXY","machine");

&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;The returned result shows proxy definition, or empty if no proxy is defined.&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="powershell output.png" style="width: 559px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58791i603759248E3AC590/image-size/large?v=v2&amp;amp;px=999" role="button" title="powershell output.png" alt="powershell output.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Get Windows HTTP Services for proxy details&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;netsh winhttp show proxy&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Return result shows proxy definition, or confirm no proxy is defined.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="powershell Direct access no proxy server.png" style="width: 256px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58792i2E3BCF2D83C9BE65/image-size/large?v=v2&amp;amp;px=999" role="button" title="powershell Direct access no proxy server.png" alt="powershell Direct access no proxy server.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Validate that proxy is not set in Internet Options &amp;gt; LAN Settings&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Local Area Network Settings.png" style="width: 392px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/58793iCB68BFB257DD857E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Local Area Network Settings.png" alt="Local Area Network Settings.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="DisableProxyinWindowsServer-RemoveSystemVariableshttp_proxyAndhttps_proxy"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Remove Windows Proxy Settings&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;NOTE1: Altering proxy settings should only be done in the context of troubleshooting, and local IT recommendations should be followed.&amp;nbsp;&lt;BR /&gt;NOTE2: Changes to proxy settings in production environments should be done per local IT recommendations.&lt;BR /&gt;TIP: Take notes of settings before removing values, to enable recreating settings later if required.&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Run PowerShell terminal as the same user runs Qlik service.&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;Start-Process powershell.exe -Credential domain\qlikservice&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Confirm that PowerShell is running as the expected user&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="ckeditor_codeblock"&gt;whoami&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Remove HTTP_PROXY and&amp;nbsp;HTTPS_PROXY variables&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;[System.Environment]::SetEnvironmentVariable("HTTPS_PROXY ", "", [System.EnvironmentVariableTarget]::Machine)
[System.Environment]::SetEnvironmentVariable("HTTPS_PROXY ", "", [System.EnvironmentVariableTarget]::User)
[System.Environment]::SetEnvironmentVariable("HTTP_PROXY ", "", [System.EnvironmentVariableTarget]::Machine)
[System.Environment]::SetEnvironmentVariable("HTTP_PROXY ", "", [System.EnvironmentVariableTarget]::User)
&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Remove Windows HTTP Service proxy setting&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;netsh winhttp reset proxy&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Disable IE proxy through Windows Registry&amp;nbsp;&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;New-ItemProperty&amp;nbsp;-Path&amp;nbsp;'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\'&amp;nbsp;-Name&amp;nbsp;ProxyEnable&amp;nbsp;-Value&amp;nbsp;0&amp;nbsp;-Force&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Remove IE proxy address reference&amp;nbsp;through Windows Registry&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;New-ItemProperty&amp;nbsp;-Path&amp;nbsp;'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\'&amp;nbsp;-Name&amp;nbsp;ProxyServer&amp;nbsp;-Value&amp;nbsp;$null&amp;nbsp;-Force&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;
&lt;H3 id="DisableProxyinWindowsServer-InternetExplorer(IE)Proxy"&gt;&lt;FONT color="#339966"&gt;&lt;STRONG&gt;Restore Windows Proxy Settings&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;Open Powershell terminal as Administrator&lt;/LI&gt;
&lt;LI&gt;Define&amp;nbsp;HTTP_PROXY and&amp;nbsp;HTTPS_PROXY system variables&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;[System.Environment]::SetEnvironmentVariable("HTTPS_PROXY ", "&amp;lt;MyMachineHttpsProxy&amp;gt;", [System.EnvironmentVariableTarget]::Machine)
[System.Environment]::SetEnvironmentVariable("HTTPS_PROXY ", "&amp;lt;MyUSerHttpsProxy&amp;gt;", [System.EnvironmentVariableTarget]::User)
[System.Environment]::SetEnvironmentVariable("HTTP_PROXY ", "&amp;lt;MyMachineHttpProxy&amp;gt;", [System.EnvironmentVariableTarget]::Machine)
[System.Environment]::SetEnvironmentVariable("HTTP_PROXY ", "&amp;lt;MyUserHttpProxy&amp;gt;", [System.EnvironmentVariableTarget]::User)
&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Set Windows HTTP Service proxy setting&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;netsh winhttp set proxy &amp;lt;proxy&amp;gt;:&amp;lt;port&amp;gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Enable IE proxy through Windows Registry&amp;nbsp;&lt;/P&gt;
&lt;PRE class="ckeditor_codeblock"&gt;New-ItemProperty&amp;nbsp;-Path&amp;nbsp;'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\'&amp;nbsp;-Name&amp;nbsp;ProxyEnable&amp;nbsp;-Value&amp;nbsp;1&amp;nbsp;-Force&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Enable&amp;nbsp;IE proxy address reference&amp;nbsp;through Windows Registry&lt;BR /&gt;&amp;nbsp;
&lt;PRE class="ckeditor_codeblock"&gt;New-ItemProperty&amp;nbsp;-Path&amp;nbsp;'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\'&amp;nbsp;-Name&amp;nbsp;ProxyServer&amp;nbsp;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Thu, 19 Mar 2026 05:59:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/Windows-Proxy-Configuration/ta-p/1715712</guid>
      <dc:creator>Lisa_Sun</dc:creator>
      <dc:date>2026-03-19T05:59:20Z</dc:date>
    </item>
  </channel>
</rss>

