You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2020/07/08 12:58:51 UTC

[camel-website] branch asf-site updated: Website updated to 90ca0fbe45

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/camel-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 8c3b6eb  Website updated to 90ca0fbe45
8c3b6eb is described below

commit 8c3b6eb4540d8171563940f5943782c65dacf6b2
Author: jenkins <bu...@apache.org>
AuthorDate: Wed Jul 8 12:58:45 2020 +0000

    Website updated to 90ca0fbe45
---
 camel-quarkus/latest/user-guide/bootstrap.html |   33 +-
 components/latest/aws2-eks-component.html      |    2 +-
 security/CVE-2020-11994.txt.asc                |   27 +
 sitemap-camel-k.xml                            |  120 +-
 sitemap-camel-kafka-connector.xml              | 2186 ++++++++---------
 sitemap-camel-karaf.xml                        |   28 +-
 sitemap-camel-quarkus.xml                      |  352 +--
 sitemap-camel-spring-boot.xml                  | 1254 +++++-----
 sitemap-components.xml                         | 3110 ++++++++++++------------
 sitemap-manual.xml                             |  472 ++--
 10 files changed, 3818 insertions(+), 3766 deletions(-)

diff --git a/camel-quarkus/latest/user-guide/bootstrap.html b/camel-quarkus/latest/user-guide/bootstrap.html
index 88630ab..d31cdc5 100644
--- a/camel-quarkus/latest/user-guide/bootstrap.html
+++ b/camel-quarkus/latest/user-guide/bootstrap.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Bootstrap Camel Quarkus :: Apache Camel</title> <link rel="canonical" href="https://camel.apache.org/camel-quarkus/latest/user-guide/bootstrap.html"> <meta name="generator" content="Antora 2.3.0"> <link rel="stylesheet" href="../../../_/css/site-c4a4eb600b.css"> <meta name="application-name" content="Apache Camel"> <link rel="manifest" href="../../../s [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Bootstrap and configuration :: Apache Camel</title> <link rel="canonical" href="https://camel.apache.org/camel-quarkus/latest/user-guide/bootstrap.html"> <meta name="generator" content="Antora 2.3.0"> <link rel="stylesheet" href="../../../_/css/site-c4a4eb600b.css"> <meta name="application-name" content="Apache Camel"> <link rel="manifest" href="../../ [...]
 import javax.inject.Named;
 
 import org.apache.camel.component.log.LogComponent;
@@ -9,7 +9,7 @@ public class Configurations {
     /**
      * Produces a {@link LogComponent} instance with a custom exchange formatter set-up.
      */
-    @Named
+    @Named <i class="conum" data-value="1"></i><b>(1)</b>
     LogComponent log() {
         DefaultExchangeFormatter formatter = new DefaultExchangeFormatter();
         formatter.setShowExchangePattern(false);
@@ -20,9 +20,34 @@ public class Configurations {
 
         return component;
     }
-}</code></pre> </div> </div> <div class="paragraph"> <p>To configure components and other aspects of Apache Camel through properties, you can add the <code>camel-quarkus-main</code> extension which brings functionalities from <a href="https://camel.apache.org/components/latest/others/main.html">Apache Camel Main</a> to Camel Quarkus.</p> </div> <div class="paragraph"> <p>In the example below, we perform the same configuration of the Log component via properties like we did above using Ja [...]
+}</code></pre> </div> </div> <div class="colist arabic"> <div class="table-wrapper"><table> <tr> <td><i class="conum" data-value="1"></i><b>1</b></td> <td>Camel uses the component URI scheme to look-up components from its registry, this requires you to add the <code>@Named</code> annotation to the method, otherwise the CDI container would create an anonymous bean and Camel would not be able to look it up.</td> </tr> </table></div> </div> <div class="paragraph"> <p>In Camel Quarkus the Ca [...]
+import javax.enterprise.event.Observes;
+import org.apache.camel.quarkus.core.events.ComponentAddEvent;
+import org.apache.camel.component.log.LogComponent;
+
+@ApplicationScoped
+public static class EventHandler {
+    public void onComponentAdd(@Observes ComponentAddEvent event) {
+        if (event.getComponent() instanceof LogComponent) {
+            // do something with the log component
+        }
+    }
+}</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_camel_main"><a class="anchor" href="#_camel_main"></a>Camel Main</h2> <div class="sectionbody"> <div class="paragraph"> <p>To configure components and other aspects of Apache Camel through properties, you can add the <code>camel-quarkus-main</code> extension which brings functionalities from <a href="https://camel.apache.org/components/latest/others/main.html">Apache Camel Main</a> to Camel Quarkus.</p> </div> <div c [...]
 camel.component.log.exchange-formtatter.show-exchange-pattern = false
-camel.component.log.exchange-formtatter.show-body-type = false</code></pre> </div> </div> </article> <aside class="toc sidebar" data-title="Contents" data-levels="2"> <div class="toc-menu"></div> </aside> </div> </main> </div> <div class="footer-tools"> <a href="#top" title="Reach the top of the page">Back to top</a> </div> <footer> <div class="footer"> <figure class="logo"> <img src="../../../_/img/logo-d.svg" class="logo-small mt-60" alt="Apache Camel Logo" aria-label="white silhouette [...]
+camel.component.log.exchange-formtatter.show-body-type = false</code></pre> </div> </div> <div class="paragraph"> <p>In addition to support configuring Camel through properties, <code>camel-quarkus-main</code> allows you to use conventions to configure the Camel behavior. For example, if there is a single <code>ExchangeFormatter</code> instance in the CDI container, then it will automatically wire that bean to the <code>LogComponent</code>.</p> </div> <div class="paragraph"> <p>Camel Mai [...]
+import io.quarkus.runtime.annotations.QuarkusMain;
+import org.apache.camel.quarkus.main.CamelMainApplication;
+
+@QuarkusMain
+public class Main {
+    public static void main(String... args) {
+        //
+        // your logic here
+        //
+
+        Quarkus.run(CamelMainApplication.class, args); <i class="conum" data-value="1"></i><b>(1)</b>
+    }
+}</code></pre> </div> </div> <div class="colist arabic"> <div class="table-wrapper"><table> <tr> <td><i class="conum" data-value="1"></i><b>1</b></td> <td>Start Quarkus and the Camel Quarkus runtime</td> </tr> </table></div> </div> <div class="admonitionblock note"> <div class="table-wrapper"><table> <tr> <td class="icon"> <i class="fa icon-note" title="Note"></i> </td> <td class="content"> <div class="paragraph"> <p>It is recommended to perform very little logic in the Java Main.</p> </ [...]
   "@context": "http://schema.org",
   "@type": "Organization",
   "name": "Apache Camel",
diff --git a/components/latest/aws2-eks-component.html b/components/latest/aws2-eks-component.html
index f4b5bb3..3273312 100644
--- a/components/latest/aws2-eks-component.html
+++ b/components/latest/aws2-eks-component.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>AWS 2 Elastic Kubernetes Service (EKS) :: Apache Camel</title> <link rel="canonical" href="https://camel.apache.org/components/latest/aws2-eks-component.html"> <meta name="description" content="Manage AWS EKS cluster instances using AWS SDK version 2.x."> <meta name="generator" content="Antora 2.3.0"> <link rel="stylesheet" href="../../_/css/site-c4a4e [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>AWS 2 Elastic Kubernetes Service (EKS) :: Apache Camel</title> <link rel="canonical" href="https://camel.apache.org/components/latest/aws2-eks-component.html"> <meta name="description" content="Manage AWS EKS cluster instances using AWS SDK version 2.x."> <meta name="generator" content="Antora 2.3.0"> <link rel="stylesheet" href="../../_/css/site-c4a4e [...]
     .to("aws2-eks://test?eksClient=#amazonEksClient&amp;operation=listClusters")</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_automatic_detection_of_eksclient_client_in_registry"><a class="anchor" href="#_automatic_detection_of_eksclient_client_in_registry"></a>Automatic detection of EksClient client in registry</h2> <div class="sectionbody"> <div class="paragraph"> <p>The component is capable of detecting the presence of an EksClient bean into the registry. If i [...]
   .setBody(ListClustersRequest.builder().maxResults(12).build())
   .to("aws2-eks://test?eksClient=#amazonEksClient&amp;operation=listClusters&amp;pojoRequest=true")</pre> </div> </div> <div class="paragraph"> <p>In this way you&#8217;ll pass the request directly without the need of passing headers and options specifically related to this operation.</p> </div> </div> </div> <div class="sect1"> <h2 id="_dependencies"><a class="anchor" href="#_dependencies"></a>Dependencies</h2> <div class="sectionbody"> <div class="paragraph"> <p>Maven users will need t [...]
diff --git a/security/CVE-2020-11994.txt.asc b/security/CVE-2020-11994.txt.asc
new file mode 100644
index 0000000..b696547
--- /dev/null
+++ b/security/CVE-2020-11994.txt.asc
@@ -0,0 +1,27 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+CVE-2020-11994: Server-Side Template Injection and arbitrary file disclosure on Camel templating components
+
+Severity: MEDIUM
+
+Vendor: The Apache Software Foundation
+
+Versions Affected: Camel 2.25.0 to 2.25.1, Camel 3.0.0 to 3.3.0. The unsupported Camel 2.x (2.24 and earlier) versions may be also affected.
+
+Description: Server-Side Template Injection and arbitrary file disclosure on Camel templating components
+
+Mitigation: 2.x users should upgrade to 2.25.2, 3.x users should upgrade to 3.4.0 The JIRA tickets: https://issues.apache.org/jira/browse/CAMEL-15013 and https://issues.apache.org/jira/browse/CAMEL-15050 refer to the various commits that resolved the issue, and have more details.
+
+Credit: This issue was discovered by GHSL team member @pwntester (Alvaro Muñoz)
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2.0.22 (GNU/Linux)
+
+iQEcBAEBAgAGBQJfBbyHAAoJEONOnzgC/0EAjFgH/2nKHQgMOtQLVI8T5IMVbCvO
+tLnrBYrLpC/ukVXlSM69YeJ7wOXRR2cb8Zml43sQEmGsEe8cbIYo0Gh9nAKRTU0X
+Ypz/waFZ6EB51PmCRVm1ZLRbe9sbyHEmN/H1TMNymqQIzubaASEf9HtdOKJstqS0
+IRIYdBA7N4W+ixh1NlkBJFzN/Kbnmw20ccnZmF0LCNCDkeMvIFJaXMu1qSBkDKm0
+oFIoTxqucGt7NMCeld4XdLTF6hCHTigRTtNi8PHs0DGkdZEEJye5Ap3URSylycht
+8i9H3B1FNvabdoseybeDc1vkZQOBXUbIMTtukldWnr0NigrnKUQs+iqS1wNrO+M=
+=yx2t
+-----END PGP SIGNATURE-----
diff --git a/sitemap-camel-k.xml b/sitemap-camel-k.xml
index d5c242b..75ee4ee 100644
--- a/sitemap-camel-k.xml
+++ b/sitemap-camel-k.xml
@@ -2,242 +2,242 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://camel.apache.org/camel-k/latest/cli/cli.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/cli/modeline.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/components.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/configmap-secret.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/configuration.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/dependencies.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/configuration/logging.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/developers.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/crc.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/gke.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/installation.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/minikube.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/minishift.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/openshift.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/registry/dockerhub.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/registry/gcr.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/registry/github.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/installation/registry/registry.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/groovy.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/java.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/javascript.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/kotlin.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/languages.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/xml.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/languages/yaml.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/observability/monitoring.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/running/dev-mode.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/running/running.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/3scale.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/affinity.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/builder.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/camel.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/container.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/cron.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/dependencies.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/deployer.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/deployment.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/environment.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/gc.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/ingress.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/istio.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/jolokia.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/jvm.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/knative-service.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/knative.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/master.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/openapi.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/owner.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/platform.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/prometheus.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/pull-secret.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/quarkus.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/route.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/service.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/tracing.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/traits/traits.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/tutorials/tekton/tekton.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/tutorials/tutorials.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-k/latest/uninstalling.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-camel-kafka-connector.xml b/sitemap-camel-kafka-connector.xml
index a22baba..44681b7 100644
--- a/sitemap-camel-kafka-connector.xml
+++ b/sitemap-camel-kafka-connector.xml
@@ -2,4374 +2,4374 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/about.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/basic-concepts.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-activemq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-activemq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ahc-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ahc-ws-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ahc-ws-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ahc-wss-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ahc-wss-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-amqp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-amqp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-apns-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-apns-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-as2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-as2-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-asterisk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-asterisk-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atmos-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atmos-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atmosphere-websocket-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atmosphere-websocket-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atom-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-map-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-map-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-messaging-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-messaging-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-multimap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-queue-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-set-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-set-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-value-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-atomix-value-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-avro-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-avro-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-cw-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-ddb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-ddbstream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-ec2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-ecs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-eks-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-iam-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-kinesis-firehose-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-kinesis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-kinesis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-kms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-lambda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-mq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-msk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-s3-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-s3-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-sdb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-ses-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-sns-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-sqs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-sqs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-swf-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-swf-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws-translate-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-athena-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-cw-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-ddb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-ddbstream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-ec2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-ecs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-eks-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-iam-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-kinesis-firehose-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-kinesis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-kinesis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-kms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-lambda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-mq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-msk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-s3-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-s3-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-ses-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-sns-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-sqs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-sqs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-aws2-translate-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-azure-blob-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-azure-blob-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-azure-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-azure-queue-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-azure-storage-blob-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-azure-storage-blob-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-azure-storage-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-azure-storage-queue-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-bean-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-bean-validator-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-beanstalk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-beanstalk-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-bonita-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-box-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-box-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-braintree-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-braintree-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-browse-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-browse-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-caffeine-cache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-caffeine-loadcache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-chatscript-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-chunk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-class-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cm-sms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cmis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cmis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-coap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-coap-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-coap+tcp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-coap+tcp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-coaps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-coaps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-coaps+tcp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-coaps+tcp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cometd-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cometd-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cometds-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cometds-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-consul-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-consul-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-controlbus-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-corda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-corda-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-couchbase-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-couchbase-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-couchdb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-couchdb-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cql-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cron-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-crypto-cms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-crypto-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cxf-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cxf-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cxfrs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-cxfrs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-dataformat-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-dataset-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-dataset-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-dataset-test-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-debezium-mongodb-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-debezium-mysql-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-debezium-postgres-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-debezium-sqlserver-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-digitalocean-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-direct-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-direct-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-direct-vm-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-direct-vm-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-disruptor-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-disruptor-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-disruptor-vm-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-disruptor-vm-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-djl-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-dns-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-docker-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-docker-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-dozer-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-drill-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-dropbox-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-dropbox-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ehcache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ehcache-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-elasticsearch-rest-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-elsql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-elsql-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-elytron-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-elytron-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-etcd-keys-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-etcd-stats-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-etcd-stats-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-etcd-watch-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-eventadmin-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-eventadmin-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-exec-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-facebook-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-facebook-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-fhir-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-fhir-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-file-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-file-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-file-watch-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-flatpack-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-flatpack-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-flink-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-fop-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-freemarker-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ftp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ftp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ftps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ftps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ganglia-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-geocoder-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-git-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-git-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-github-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-github-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-bigquery-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-bigquery-sql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-calendar-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-calendar-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-calendar-stream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-drive-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-drive-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-mail-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-mail-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-mail-stream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-pubsub-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-pubsub-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-sheets-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-sheets-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-google-sheets-stream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-gora-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-gora-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-grape-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-graphql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-grpc-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-grpc-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-guava-eventbus-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-guava-eventbus-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-atomicvalue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-instance-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-list-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-list-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-map-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-map-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-multimap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-multimap-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-queue-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-replicatedmap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-replicatedmap-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-ringbuffer-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-seda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-seda-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-set-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-set-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-topic-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hazelcast-topic-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hbase-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hbase-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hdfs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hdfs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hipchat-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-hipchat-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-http-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-https-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-iec60870-client-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-iec60870-client-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-iec60870-server-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-iec60870-server-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-cache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-cache-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-compute-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-events-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-idgen-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-messaging-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-messaging-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ignite-set-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-imap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-imap-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-imaps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-imaps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-infinispan-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-infinispan-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-influxdb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-iota-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ipfs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-irc-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-irc-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ironmq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ironmq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jbpm-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jbpm-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jcache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jcache-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jclouds-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jclouds-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jcr-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jcr-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jdbc-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jetty-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jgroups-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jgroups-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jgroups-raft-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jgroups-raft-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jing-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jira-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jira-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jms-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jmx-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jolt-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jooq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jooq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jpa-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jpa-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jslt-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-json-validator-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jt400-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-jt400-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kafka-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kafka-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-config-maps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-deployments-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-deployments-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-hpa-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-hpa-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-job-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-job-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-namespaces-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-namespaces-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-nodes-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-nodes-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-persistent-volumes-claims-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-persistent-volumes-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-pods-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-pods-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-replication-controllers-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-replication-controllers-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-resources-quota-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-secrets-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-service-accounts-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-services-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kubernetes-services-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-kudu-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-language-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ldap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ldif-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-log-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-lpr-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-lucene-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-lumberjack-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-master-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-metrics-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-micrometer-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-microprofile-metrics-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-milo-client-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-milo-client-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-milo-server-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-milo-server-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mina-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mina-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mllp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mllp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mock-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mongodb-gridfs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mongodb-gridfs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mongodb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mongodb-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-msv-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mustache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mvel-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mybatis-bean-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mybatis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-mybatis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-nagios-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-nats-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-nats-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-netty-http-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-netty-http-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-netty-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-netty-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-nitrite-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-nitrite-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-nsq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-nsq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-olingo2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-olingo2-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-olingo4-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-olingo4-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-openshift-build-configs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-openshift-builds-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-openstack-cinder-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-openstack-glance-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-openstack-keystone-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-openstack-neutron-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-openstack-nova-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-openstack-swift-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-optaplanner-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-optaplanner-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-paho-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-paho-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-paxlogging-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pdf-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pg-replication-slot-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pgevent-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pgevent-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-platform-http-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pop3-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pop3-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pop3s-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pop3s-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pubnub-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pubnub-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pulsar-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-pulsar-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-quartz-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-quickfix-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-quickfix-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-rabbitmq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-rabbitmq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-reactive-streams-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-reactive-streams-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ref-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ref-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-rest-api-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-rest-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-rest-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-rest-openapi-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-rest-swagger-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-resteasy-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-resteasy-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-robotframework-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-robotframework-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-rss-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-saga-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-salesforce-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-salesforce-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sap-netweaver-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-scheduler-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-schematron-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-scp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-seda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-seda-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-service-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-servicenow-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-servlet-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sftp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sftp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sip-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sip-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sips-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sips-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sjms-batch-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sjms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sjms-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sjms2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sjms2-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-slack-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-slack-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-smpp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-smpp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-smpps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-smpps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-smtp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-smtp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-smtps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-smtps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-snmp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-snmp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-solr-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-solrCloud-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-solrs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-soroush-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-soroush-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spark-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spark-rest-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-splunk-hec-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-splunk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-splunk-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-batch-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-event-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-event-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-integration-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-integration-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-ldap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-redis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-redis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-ws-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-spring-ws-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sql-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-sql-stored-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ssh-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-ssh-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-stax-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-stomp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-stomp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-stream-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-stream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-string-template-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-stub-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-stub-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-syslog-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-syslog-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-telegram-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-telegram-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-thrift-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-thrift-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-tika-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-timer-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-twilio-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-twilio-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-twitter-directmessage-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-twitter-directmessage-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-twitter-search-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-twitter-search-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-twitter-timeline-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-twitter-timeline-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-undertow-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-undertow-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-validator-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-velocity-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-vertx-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-vertx-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-vm-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-vm-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-weather-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-weather-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-web3j-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-web3j-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-webhook-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-websocket-jsr356-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-websocket-jsr356-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-websocket-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-websocket-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-weka-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-wordpress-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-wordpress-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-workday-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xchange-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xj-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xmlsecurity-sign-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xmlsecurity-verify-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xmpp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xmpp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xquery-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xquery-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xslt-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-xslt-saxon-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-yammer-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-yammer-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-zendesk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-zendesk-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-zookeeper-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-zookeeper-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/connectors/camel-zookeeper-master-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/contributing.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/getting-started-with-packages.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/getting-started.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/try-it-out-locally.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/latest/try-it-out-on-openshift-with-strimzi.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/about.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/basic-concepts.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-activemq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-activemq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ahc-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ahc-ws-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ahc-ws-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ahc-wss-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ahc-wss-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-amqp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-amqp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-apns-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-apns-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-as2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-as2-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-asterisk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-asterisk-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atmos-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atmos-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atmosphere-websocket-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atmosphere-websocket-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atom-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-map-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-map-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-messaging-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-messaging-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-multimap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-queue-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-set-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-set-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-value-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-atomix-value-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-avro-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-avro-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-cw-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-ddb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-ddbstream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-ec2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-ecs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-eks-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-iam-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-kinesis-firehose-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-kinesis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-kinesis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-kms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-lambda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-mq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-msk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-s3-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-s3-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-sdb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-ses-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-sns-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-sqs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-sqs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-swf-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-swf-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws-translate-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-cw-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-ddb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-ddbstream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-ec2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-ecs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-eks-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-iam-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-kinesis-firehose-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-kinesis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-kinesis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-kms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-lambda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-mq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-msk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-s3-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-s3-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-ses-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-sns-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-sqs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-sqs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-aws2-translate-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-azure-blob-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-azure-blob-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-azure-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-azure-queue-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-azure-storage-blob-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-azure-storage-blob-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-azure-storage-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-azure-storage-queue-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-bean-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-bean-validator-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-beanstalk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-beanstalk-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-bonita-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-box-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-box-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-braintree-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-braintree-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-browse-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-browse-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-caffeine-cache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-caffeine-loadcache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-chatscript-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-chunk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-class-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cm-sms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cmis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cmis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-coap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-coap-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-coap+tcp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-coap+tcp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-coaps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-coaps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-coaps+tcp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-coaps+tcp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cometd-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cometd-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cometds-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cometds-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-consul-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-consul-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-controlbus-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-corda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-corda-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-couchbase-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-couchbase-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-couchdb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-couchdb-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cql-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cron-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-crypto-cms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-crypto-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cxf-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cxf-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cxfrs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-cxfrs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-dataformat-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-dataset-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-dataset-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-dataset-test-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-debezium-mongodb-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-debezium-mysql-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-debezium-postgres-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-debezium-sqlserver-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-digitalocean-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-direct-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-direct-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-direct-vm-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-direct-vm-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-disruptor-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-disruptor-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-disruptor-vm-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-disruptor-vm-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-djl-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-dns-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-docker-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-docker-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-dozer-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-drill-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-dropbox-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-dropbox-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ehcache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ehcache-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-elasticsearch-rest-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-elsql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-elsql-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-elytron-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-elytron-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-etcd-keys-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-etcd-stats-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-etcd-stats-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-etcd-watch-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-eventadmin-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-eventadmin-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-exec-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-facebook-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-facebook-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-fhir-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-fhir-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-file-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-file-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-file-watch-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-flatpack-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-flatpack-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-flink-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-fop-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-freemarker-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ftp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ftp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ftps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ftps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ganglia-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-geocoder-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-git-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-git-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-github-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-github-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-bigquery-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-bigquery-sql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-calendar-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-calendar-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-calendar-stream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-drive-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-drive-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-mail-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-mail-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-mail-stream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-pubsub-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-pubsub-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-sheets-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-sheets-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-google-sheets-stream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-gora-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-gora-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-grape-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-graphql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-grpc-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-grpc-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-guava-eventbus-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-guava-eventbus-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-atomicvalue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-instance-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-list-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-list-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-map-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-map-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-multimap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-multimap-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-queue-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-replicatedmap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-replicatedmap-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-ringbuffer-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-seda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-seda-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-set-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-set-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-topic-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hazelcast-topic-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hbase-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hbase-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hdfs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hdfs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hipchat-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-hipchat-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-http-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-https-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-iec60870-client-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-iec60870-client-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-iec60870-server-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-iec60870-server-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-cache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-cache-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-compute-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-events-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-idgen-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-messaging-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-messaging-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-queue-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ignite-set-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-imap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-imap-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-imaps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-imaps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-infinispan-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-infinispan-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-influxdb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-iota-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ipfs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-irc-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-irc-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ironmq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ironmq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jbpm-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jbpm-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jcache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jcache-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jclouds-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jclouds-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jcr-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jcr-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jdbc-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jetty-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jgroups-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jgroups-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jgroups-raft-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jgroups-raft-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jing-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jira-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jira-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jms-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jmx-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jolt-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jooq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jooq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jpa-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jpa-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jslt-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-json-validator-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jt400-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-jt400-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kafka-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kafka-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-config-maps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-deployments-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-deployments-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-hpa-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-hpa-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-job-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-job-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-namespaces-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-namespaces-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-nodes-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-nodes-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-persistent-volumes-claims-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-persistent-volumes-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-pods-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-pods-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-replication-controllers-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-replication-controllers-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-resources-quota-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-secrets-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-service-accounts-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-services-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kubernetes-services-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-kudu-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-language-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ldap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ldif-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-log-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-lpr-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-lucene-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-lumberjack-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-master-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-metrics-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-micrometer-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-microprofile-metrics-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-milo-client-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-milo-client-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-milo-server-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-milo-server-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mina-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mina-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mllp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mllp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mock-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mongodb-gridfs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mongodb-gridfs-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mongodb-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mongodb-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-msv-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mustache-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mvel-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mybatis-bean-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mybatis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-mybatis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-nagios-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-nats-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-nats-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-netty-http-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-netty-http-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-netty-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-netty-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-nitrite-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-nitrite-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-nsq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-nsq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-olingo2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-olingo2-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-olingo4-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-olingo4-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-openshift-build-configs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-openshift-builds-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-openstack-cinder-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-openstack-glance-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-openstack-keystone-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-openstack-neutron-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-openstack-nova-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-openstack-swift-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-optaplanner-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-optaplanner-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-paho-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-paho-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-paxlogging-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pdf-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pg-replication-slot-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pgevent-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pgevent-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-platform-http-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pop3-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pop3-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pop3s-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pop3s-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pubnub-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pubnub-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pulsar-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-pulsar-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-quartz-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-quickfix-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-quickfix-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-rabbitmq-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-rabbitmq-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-reactive-streams-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-reactive-streams-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ref-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ref-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-rest-api-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-rest-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-rest-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-rest-openapi-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-rest-swagger-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-robotframework-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-robotframework-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-rss-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-saga-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-salesforce-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-salesforce-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sap-netweaver-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-scheduler-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-schematron-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-scp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-seda-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-seda-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-service-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-servicenow-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-servlet-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sftp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sftp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sip-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sip-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sips-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sips-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sjms-batch-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sjms-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sjms-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sjms2-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sjms2-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-slack-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-slack-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-smpp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-smpp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-smpps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-smpps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-smtp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-smtp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-smtps-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-smtps-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-snmp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-snmp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-solr-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-solrCloud-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-solrs-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-soroush-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-soroush-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spark-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spark-rest-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-splunk-hec-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-splunk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-splunk-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-batch-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-event-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-event-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-integration-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-integration-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-ldap-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-redis-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-redis-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-ws-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-spring-ws-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sql-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sql-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-sql-stored-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ssh-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-ssh-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-stax-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-stomp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-stomp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-stream-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-stream-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-string-template-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-stub-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-stub-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-syslog-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-syslog-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-telegram-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-telegram-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-thrift-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-thrift-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-tika-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-timer-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-twilio-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-twilio-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-twitter-directmessage-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-twitter-directmessage-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-twitter-search-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-twitter-search-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-twitter-timeline-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-twitter-timeline-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-undertow-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-undertow-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-validator-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-velocity-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-vertx-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-vertx-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-vm-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-vm-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-weather-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-weather-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-web3j-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-web3j-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-webhook-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-websocket-jsr356-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-websocket-jsr356-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-websocket-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-websocket-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-weka-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-wordpress-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-wordpress-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-workday-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xchange-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xj-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xmlsecurity-sign-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xmlsecurity-verify-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xmpp-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xmpp-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xquery-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xquery-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xslt-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-xslt-saxon-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-yammer-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-yammer-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-zendesk-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-zendesk-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-zookeeper-kafka-sink-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-zookeeper-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/connectors/camel-zookeeper-master-kafka-source-connector.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/contributing.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/getting-started-with-packages.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/getting-started.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/try-it-out-locally.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-kafka-connector/0.3.x/try-it-out-on-openshift-with-strimzi.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-camel-karaf.xml b/sitemap-camel-karaf.xml
index 333f214..8c6ed0e 100644
--- a/sitemap-camel-karaf.xml
+++ b/sitemap-camel-karaf.xml
@@ -2,58 +2,58 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://camel.apache.org/camel-karaf/latest/blueprint.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/latest/components.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/latest/eventadmin-component.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/latest/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/latest/kura.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/latest/osgi-activator.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/latest/paxlogging-component.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/3.4.x/blueprint.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/3.4.x/components.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/3.4.x/eventadmin-component.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/3.4.x/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/3.4.x/kura.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/3.4.x/osgi-activator.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-karaf/3.4.x/paxlogging-component.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-camel-quarkus.xml b/sitemap-camel-quarkus.xml
index 523d607..2119040 100644
--- a/sitemap-camel-quarkus.xml
+++ b/sitemap-camel-quarkus.xml
@@ -2,706 +2,706 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/contributor-guide/ci.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/contributor-guide/create-new-extension.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/contributor-guide/extension-documentation.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/contributor-guide/extension-metadata.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/contributor-guide/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/contributor-guide/promote-jvm-to-native.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/contributor-guide/release-guide.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/activemq.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/ahc-ws.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/ahc.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/amqp.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/attachments.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/avro-rpc.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/avro.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-ec2.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-ecs.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-eks.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-iam.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-kinesis.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-kms.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-lambda.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-s3.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-sdb.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-sns.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-sqs.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-swf.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws-translate.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-athena.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-cw.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-ddb.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-ec2.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-ecs.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-eks.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-iam.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-kms.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-mq.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-msk.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-s3.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-ses.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-sns.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-sqs.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/aws2-translate.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/azure.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/base64.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/bean-validator.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/bean.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/bindy.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/box.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/braintree.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/caffeine-lrucache.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/cassandraql.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/componentdsl.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/consul.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/controlbus.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/core-cloud.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/core.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/couchbase.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/couchdb.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/cron.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/csv.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/dataformat.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/debezium-mongodb.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/debezium-mysql.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/debezium-postgres.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/debezium-sqlserver.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/direct.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/dozer.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/elasticsearch-rest.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/endpointdsl.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/exec.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/fhir.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/file-watch.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/file.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/ftp.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/github.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/google-bigquery.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/google-calendar.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/google-drive.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/google-mail.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/google-pubsub.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/google-sheets.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/graphql.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/groovy.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/grpc.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/gson.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/http.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/hystrix.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/ical.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/infinispan.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/influxdb.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jackson.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jacksonxml.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jaxb.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jdbc.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jira.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jms.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/johnzon.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jolt.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/json-validator.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jsonpath.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/jta.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/kafka.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/kotlin.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/kubernetes.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/kudu.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/log.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/lzf.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/mail.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/main.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/microprofile-fault-tolerance.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/microprofile-health.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/microprofile-metrics.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/mock.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/mongodb-gridfs.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/mongodb.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/mustache.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/netty-http.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/netty.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/nitrite.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/ognl.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/olingo4.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/openapi-java.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/openstack.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/opentracing.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/paho.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/pdf.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/platform-http.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/protobuf.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/pubnub.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/quartz.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/qute.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/rabbitmq.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/reactive-executor.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/reactive-streams.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/ref.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/rest-openapi.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/rest.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/salesforce.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/sap-netweaver.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/scheduler.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/seda.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/servicenow.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/servlet.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/sjms.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/sjms2.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/slack.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/snakeyaml.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/soap.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/sql.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/stream.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/tagsoup.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/tarfile.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/telegram.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/tika.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/timer.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/twitter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/validator.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/vertx.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/vm.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/websocket-jsr356.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/xml-io.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/xml-jaxb.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/xml-jaxp.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/xpath.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/xslt.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/xstream.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/zip-deflater.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/extensions/zipfile.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/list-of-camel-quarkus-extensions.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/user-guide/bootstrap.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/user-guide/cdi.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/user-guide/examples.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/user-guide/first-steps.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/user-guide/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-quarkus/latest/user-guide/native-mode.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-camel-spring-boot.xml b/sitemap-camel-spring-boot.xml
index 0f9941b..1957d17 100644
--- a/sitemap-camel-spring-boot.xml
+++ b/sitemap-camel-spring-boot.xml
@@ -2,2510 +2,2510 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/activemq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ahc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ahc-ws-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/amqp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/any23-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/apns-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/as2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/asn1-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/asterisk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/atmos-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/atmosphere-websocket-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/atom-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/atomix-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/avro-rpc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/avro-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-cw-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-ddb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-ec2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-ecs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-eks-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-iam-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-kinesis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-kms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-lambda-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-mq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-msk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-s3-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-sdb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-ses-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-sns-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-sqs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-swf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws-translate-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-athena-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-cw-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-ddb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-ec2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-ecs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-eks-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-iam-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-kinesis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-kms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-lambda-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-mq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-msk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-s3-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-ses-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-sns-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-sqs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/aws2-translate-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/azure-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/azure-storage-blob-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/azure-storage-queue-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/barcode-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/base64-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/bean-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/bean-validator-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/beanio-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/beanstalk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/bindy-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/bonita-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/box-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/braintree-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/browse-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/caffeine-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/cassandraql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/cbor-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/chatscript-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/chunk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/cm-sms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/cmis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/coap-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/cometd-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/consul-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/controlbus-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/corda-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/core-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/couchbase-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/couchdb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/cron-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/crypto-cms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/crypto-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/csv-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/cxf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/dataformat-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/dataset-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/debezium-mongodb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/debezium-mysql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/debezium-postgres-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/debezium-sqlserver-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/digitalocean-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/direct-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/directvm-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/disruptor-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/djl-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/dns-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/docker-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/dozer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/drill-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/dropbox-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ehcache-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/elasticsearch-rest-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/elsql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/etcd-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/exec-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/facebook-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/fastjson-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/fhir-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/file-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/file-watch-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/flatpack-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/flink-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/fop-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/freemarker-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ftp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ganglia-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/geocoder-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/git-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/github-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/google-bigquery-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/google-calendar-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/google-drive-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/google-mail-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/google-pubsub-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/google-sheets-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/gora-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/grape-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/graphql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/grok-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/groovy-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/grpc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/gson-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/guava-eventbus-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/hazelcast-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/hbase-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/hdfs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/hipchat-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/hl7-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/http-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/hystrix-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ical-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/iec60870-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ignite-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/infinispan-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/influxdb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/iota-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ipfs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/irc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ironmq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jackson-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jacksonxml-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jaxb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jbpm-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jcache-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jclouds-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jcr-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jdbc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jetty-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jgroups-raft-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jgroups-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jing-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jira-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jmx-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/johnzon-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jolt-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jooq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jpa-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jsch-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jslt-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/json-validator-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jsonapi-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jsonpath-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/jt400-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/kafka-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/kubernetes-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/kudu-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/language-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ldap-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ldif-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/list.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/log-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/lra-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/lucene-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/lumberjack-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/lzf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mail-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/master-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/metrics-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/micrometer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/milo-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mina-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mllp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mock-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mongodb-gridfs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mongodb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/msv-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mustache-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mvel-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/mybatis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/nagios-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/nats-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/netty-http-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/netty-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/nitrite-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/nsq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ognl-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/olingo2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/olingo4-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/openstack-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/opentracing-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/optaplanner-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/paho-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/pdf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/pg-replication-slot-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/pgevent-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/platform-http-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/printer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/protobuf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/pubnub-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/pulsar-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/quartz-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/quickfix-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/rabbitmq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/reactive-streams-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ref-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/rest-openapi-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/rest-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/rest-swagger-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/resteasy-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/robotframework-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/rss-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/saga-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/salesforce-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/sap-netweaver-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/saxon-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/scheduler-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/schematron-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/seda-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/service-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/servicenow-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/servlet-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/sip-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/sjms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/sjms2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/slack-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/smpp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/snakeyaml-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/snmp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/soap-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/solr-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/soroush-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spark-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/splunk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-batch-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-boot.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-cloud-consul.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-cloud-netflix.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-cloud-zookeeper.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-cloud.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-integration-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-ldap-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-redis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/spring-ws-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/sql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/ssh-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/stax-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/stomp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/stream-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/stringtemplate-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/stub-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/syslog-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/tagsoup-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/tarfile-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/telegram-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/thrift-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/tika-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/timer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/twilio-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/twitter-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/undertow-spring-security-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/undertow-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/univocity-parsers-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/validator-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/velocity-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/vertx-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/vertx-websocket-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/vm-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/weather-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/web3j-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/webhook-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/websocket-jsr356-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/websocket-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/weka-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/wordpress-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/workday-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xchange-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xj-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xml-jaxp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xmlsecurity-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xmpp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xpath-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xslt-saxon-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xslt-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/xstream-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/yammer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/zendesk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/zip-deflater-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/zipfile-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/zipkin-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/zookeeper-master-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/latest/zookeeper-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/activemq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ahc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ahc-ws-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/amqp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/any23-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/apns-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/as2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/asn1-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/asterisk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/atmos-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/atmosphere-websocket-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/atom-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/atomix-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/avro-rpc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/avro-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-cw-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-ddb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-ec2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-ecs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-eks-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-iam-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-kinesis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-kms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-lambda-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-mq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-msk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-s3-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-sdb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-ses-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-sns-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-sqs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-swf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws-translate-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-athena-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-cw-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-ddb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-ec2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-ecs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-eks-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-iam-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-kinesis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-kms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-lambda-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-mq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-msk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-s3-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-ses-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-sns-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-sqs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/aws2-translate-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/azure-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/azure-storage-blob-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/azure-storage-queue-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/barcode-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/base64-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/bean-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/bean-validator-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/beanio-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/beanstalk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/bindy-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/bonita-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/box-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/braintree-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/browse-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/caffeine-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/cassandraql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/cbor-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/chatscript-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/chunk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/cm-sms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/cmis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/coap-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/cometd-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/consul-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/controlbus-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/corda-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/core-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/couchbase-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/couchdb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/cron-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/crypto-cms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/crypto-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/csv-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/cxf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/dataformat-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/dataset-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/debezium-mongodb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/debezium-mysql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/debezium-postgres-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/debezium-sqlserver-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/digitalocean-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/direct-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/directvm-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/disruptor-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/djl-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/dns-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/docker-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/dozer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/drill-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/dropbox-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ehcache-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/elasticsearch-rest-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/elsql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/etcd-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/exec-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/facebook-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/fastjson-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/fhir-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/file-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/file-watch-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/flatpack-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/flink-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/fop-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/freemarker-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ftp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ganglia-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/geocoder-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/git-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/github-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/google-bigquery-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/google-calendar-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/google-drive-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/google-mail-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/google-pubsub-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/google-sheets-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/gora-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/grape-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/graphql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/grok-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/groovy-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/grpc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/gson-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/guava-eventbus-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/hazelcast-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/hbase-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/hdfs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/hipchat-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/hl7-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/http-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/hystrix-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ical-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/iec60870-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ignite-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/index.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/infinispan-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/influxdb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/iota-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ipfs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/irc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ironmq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jackson-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jacksonxml-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jaxb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jbpm-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jcache-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jclouds-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jcr-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jdbc-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jetty-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jgroups-raft-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jgroups-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jing-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jira-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jmx-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/johnzon-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jolt-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jooq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jpa-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jsch-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jslt-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/json-validator-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jsonapi-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jsonpath-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/jt400-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/kafka-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/kubernetes-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/kudu-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/language-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ldap-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ldif-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/list.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/log-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/lra-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/lucene-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/lumberjack-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/lzf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mail-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/master-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/metrics-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/micrometer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/milo-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mina-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mllp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mock-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mongodb-gridfs-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mongodb-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/msv-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mustache-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mvel-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/mybatis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/nagios-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/nats-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/netty-http-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/netty-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/nitrite-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/nsq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ognl-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/olingo2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/olingo4-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/openstack-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/opentracing-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/optaplanner-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/paho-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/pdf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/pg-replication-slot-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/pgevent-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/platform-http-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/printer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/protobuf-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/pubnub-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/pulsar-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/quartz-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/quickfix-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/rabbitmq-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/reactive-streams-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ref-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/rest-openapi-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/rest-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/rest-swagger-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/resteasy-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/robotframework-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/rss-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/saga-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/salesforce-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/sap-netweaver-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/saxon-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/scheduler-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/schematron-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/seda-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/service-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/servicenow-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/servlet-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/sip-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/sjms-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/sjms2-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/slack-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/smpp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/snakeyaml-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/snmp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/soap-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/solr-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/soroush-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spark-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/splunk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-batch-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-boot.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-cloud-consul.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-cloud-netflix.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-cloud-zookeeper.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-cloud.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-integration-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-ldap-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-redis-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/spring-ws-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/sql-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/ssh-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/stax-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/stomp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/stream-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/stringtemplate-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/stub-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/syslog-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/tagsoup-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/tarfile-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/telegram-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/thrift-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/tika-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/timer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/twilio-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/twitter-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/undertow-spring-security-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/undertow-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/univocity-parsers-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/validator-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/velocity-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/vertx-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/vm-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/weather-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/web3j-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/webhook-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/websocket-jsr356-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/websocket-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/weka-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/wordpress-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/workday-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xchange-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xj-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xml-jaxp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xmlsecurity-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xmpp-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xpath-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xslt-saxon-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xslt-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/xstream-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/yammer-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/zendesk-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/zip-deflater-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/zipfile-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/zipkin-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
 <url>
 <loc>https://camel.apache.org/camel-spring-boot/3.4.x/zookeeper-master-starter.html</loc>
-<lastmod>2020-07-08T11:00:46.736Z</lastmod>
+<lastmod>2020-07-08T12:38:34.337Z</lastmod>
 </url>
... 8975 lines suppressed ...