<?php
header("Content-Type: application/xml; charset=utf-8");
$urls = [
  "https://dmouralubrificantes.com.br/",
  "https://dmouralubrificantes.com.br/troca-de-oleo-londrina/",
  "https://dmouralubrificantes.com.br/filtros-e-lubrificantes-londrina/",
  "https://dmouralubrificantes.com.br/contato/",
  "https://dmouralubrificantes.com.br/blog/"
];
echo '<?xml version="1.0" encoding="UTF-8"?>';
echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
foreach ($urls as $url) {
  echo "<url>
    <loc>$url</loc>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>";
}
echo '</urlset>';
?>
