';$body.appendChild($modal);$modalInner = $modal.querySelector('.inner');$modalImage = $modal.querySelector('img');$modalImage.addEventListener('load', function() {$modalImage.style.setProperty('--natural-width', $modalImage.naturalWidth + 'px');$modalImage.style.setProperty('--natural-height', $modalImage.naturalHeight + 'px');$modal.classList.add('done');setTimeout(function() {if (!$modal.classList.contains('visible'))return;$modal.classList.add('loaded');setTimeout(function() {$modal.classList.remove('switching', 'from-left', 'from-right', 'done');}, _this.delay);}, ($modal.classList.contains('switching') ? 0 : _this.delay));});$modalImage.addEventListener('contextmenu', function() {if (_this.protect)event.preventDefault();}, true);$modalImage.addEventListener('dragstart', function() {if (_this.protect)event.preventDefault();}, true);$modalCaption = $modal.querySelector('.caption');$modalNext = $modal.querySelector('.next');$modalPrevious = $modal.querySelector('.previous');switch (client.browser) {case 'safari':case 'firefox':$modalInner.style.boxShadow = 'none';break;default:break;}$modal.show = function(index, offset, direction) {var item,i, j, found;if (_this.locked)return;if (typeof index != 'number')index = _this.current;if (typeof offset == 'number') {found = false;j = 0;for (j = 0; j < _this.$links.length; j++) {index += offset;if (index < 0)index = _this.$links.length - 1; else if (index >= _this.$links.length)index = 0;if (index == _this.current)break;item = _this.$links.item(index);if (!item)break;if (item.dataset.lightboxIgnore != '1') {found = true;break;}}if (!found)return;} else {if (index < 0)index = _this.$links.length - 1; else if (index >= _this.$links.length)index = 0;if (index == _this.current)return;item = _this.$links.item(index);if (!item)return;if (item.dataset.lightboxIgnore == '1')return;}if (client.mobile)_this.zoomIntervalId = setInterval(function() {_this.zoomHandler();}, 250);_this.locked = true;if (_this.current !== null) {$modal.classList.remove('loaded');$modal.classList.add('switching');switch (direction) {case -1:$modal.classList.add('from-left');break;case 1:$modal.classList.add('from-right');break;default:break;}setTimeout(function() {_this.current = index;$modalImage.src = item.href;if (_this.captions)$modalCaption.innerHTML = item.querySelector('[data-caption]').dataset.caption;setTimeout(function() {$modal.focus();_this.locked = false;}, _this.delay);}, _this.delay);} else {_this.current = index;$modalImage.src = item.href;if (_this.captions)$modalCaption.innerHTML = item.querySelector('[data-caption]').dataset.caption;$modal.classList.add('visible');setTimeout(function() {$modal.focus();_this.locked = false;}, _this.delay);}};$modal.hide = function() {if (_this.locked)return;if (!$modal.classList.contains('visible'))return;_this.locked = true;$modal.classList.remove('visible');$modal.classList.remove('loaded');$modal.classList.remove('switching', 'from-left', 'from-right', 'done');clearInterval(_this.zoomIntervalId);setTimeout(function() {$modalImage.src = '';_this.locked = false;$body.focus();_this.current = null;}, _this.delay);};$modal.next = function(direction) {$modal.show(null, 1, direction);};$modal.previous = function(direction) {$modal.show(null, -1, direction);};$modal.first = function() {$modal.show(0);};$modal.last = function() {$modal.show(_this.$links.length - 1);};$modalInner.addEventListener('touchstart', function(event) {if (!_this.navigation)return;if (event.touches.length > 1)return;dragStart = {x: event.touches[0].clientX,y: event.touches[0].clientY};});$modalInner.addEventListener('touchmove', function(event) {var dx, dy;if (!_this.navigation)return;if (!dragStart|| event.touches.length > 1)return;dragEnd = {x: event.touches[0].clientX,y: event.touches[0].clientY};dx = dragStart.x - dragEnd.x;dy = dragStart.y - dragEnd.y;if (Math.abs(dx) < 50)return;event.preventDefault();if (dx > 0)$modal.next(-1); else if (dx < 0)$modal.previous(1);});$modalInner.addEventListener('touchend', function(event) {if (!_this.navigation)return;dragStart = null;dragEnd = null;});$modal.addEventListener('click', function(event) {if (event.target&& (event.target.tagName == 'A' || event.target.tagName == 'SPOILER-TEXT'))return;$modal.hide();});$modal.addEventListener('keydown', function(event) {if (!$modal.classList.contains('visible'))return;switch (event.keyCode) {case 39:case 32:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.next();break;case 37:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.previous();break;case 36:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.first();break;case 35:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.last();break;case 27:event.preventDefault();event.stopPropagation();$modal.hide();break;}});$modalNext.addEventListener('click', function(event) {$modal.next();});$modalPrevious.addEventListener('click', function(event) {$modal.previous();});this.$modal = $modal;this.$modalImage = $modalImage;this.$modalCaption = $modalCaption;this.$modalNext = $modalNext;this.$modalPrevious = $modalPrevious;};lightboxGallery.prototype.show = function(href, config) {this.$links = config.$links;this.navigation = config.navigation;this.captions = config.captions;this.mobile = config.mobile;this.mobileNavigation = config.mobileNavigation;this.scheme = config.scheme;this.protect = config.protect;this.$modal.classList.remove('light', 'dark');switch (this.scheme) {case 'light':this.$modal.classList.add('light');break;case 'dark':this.$modal.classList.add('dark');break;case 'auto':if (window.matchMedia('(prefers-color-scheme: light)').matches)this.$modal.classList.add('light'); else this.$modal.classList.add('dark');break;}if (this.navigation) {this.$modalNext.style.display = '';this.$modalPrevious.style.display = '';if (client.mobile&& !this.mobileNavigation) {this.$modalNext.style.display = 'none';this.$modalPrevious.style.display = 'none';}} else {this.$modalNext.style.display = 'none';this.$modalPrevious.style.display = 'none';}if (this.captions)this.$modalCaption.style.display = ''; else this.$modalCaption.style.display = 'none';if (this.protect) {this.$modalImage.style.WebkitTouchCallout = 'none';this.$modalImage.style.userSelect = 'none';} else {this.$modalImage.style.WebkitTouchCallout = '';this.$modalImage.style.userSelect = '';}if (client.mobile && !this.mobile)return;this.$modal.show(href);};lightboxGallery.prototype.zoomHandler = function() {var threshold = window.matchMedia('(orientation: portrait)').matches ? 50 : 100;if (window.outerWidth > window.innerWidth + threshold)this.$modal.classList.add('zooming'); else this.$modal.classList.remove('zooming');};var _lightboxGallery = new lightboxGallery;_lightboxGallery.init({id: 'gallery01',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',});_lightboxGallery.init({id: 'gallery04',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',});_lightboxGallery.init({id: 'gallery03',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',});_lightboxGallery.init({id: 'gallery05',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',});_lightboxGallery.init({id: 'gallery02',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',});(function() {new slideshowBackground('slideshow01', {target: '#slideshow01 .bg',wrapper: '#slideshow01 .content',wait: 0,defer: true,navigation: true,order: 'default',preserveImageAspectRatio: false,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow01-cdf49bc9.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-b6ebcc87.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-1f96e68c.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-8774f726.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-19e909df.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-13d4b4de.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-f93a73ea.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-17b3845e.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-8edb584d.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-99471093.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-4ea31ec5.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-a7176eed.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-41568eb6.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-54814f16.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-87d040bd.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-67a175f8.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-9dac8534.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-85892c48.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-dc945e04.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-87e76f71.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-c7188638.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-3341a0d4.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-5012bb3b.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-70d6c723.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-88ed6077.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-5fde30f5.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-ab5b894d.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-623e1bc0.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-77c65cbe.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-563bdbcf.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-0e683723.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-fc83436c.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-b8cc2f61.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-ee09b5a6.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-ee355417.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-e5115780.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-79250f75.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-b0ba4fcb.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-a7d7f4e6.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-c12ae0bb.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-4ff4e266.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-26d5deb3.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-34e4d8db.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-e369aa65.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-7ef0e3bb.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-e9615c5b.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-367a363a.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-6875b817.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-0735761b.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-8b42e54e.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-7c1319f1.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-f92c22ac.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-8da0ea89.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-4fb43c45.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-5fbc508f.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-6edead5b.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-706a71a1.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-2cf1b3b5.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-d45d63a2.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-f4b132ea.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-804ac042.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-b834e674.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-f7645af5.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-55ea0d15.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-44130dbb.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-9cc83424.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-c8fa1ede.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-054ef883.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-463e762d.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-63aa55b9.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-614d40e5.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-7da50aa9.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-66428452.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-f0f17dd9.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-62b159de.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-653ccd9f.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-391aec9e.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-ab604199.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-e3e0ca66.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-ccab6171.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-63206f2f.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-7c500daf.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-b9fe80da.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-4149b291.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-5148461d.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-3ea959ba.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-73b5685e.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-c2f36f1b.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-ffc04ab4.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-8f05de09.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-0ba85d88.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-419a4da3.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-c2e2d9af.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-88469e8c.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-45dce224.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-de0507d0.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-341f6647.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-d30ced2c.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-e8a7cc88.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-95a25d6d.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow02', {target: '#slideshow02 .bg',wrapper: '#slideshow02 .content',wait: 0,defer: true,navigation: true,order: 'default',preserveImageAspectRatio: false,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow02-4795b79f.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-601e273c.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-030aa824.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-d27e48bf.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-13a2d8f1.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-7d3c0dc2.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-981f0605.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-f89ceeba.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-0d057f32.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-c8e29500.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-f791e66a.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-6130a2f6.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-8003c348.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-f8a7ff43.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-036d217b.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-86ae2459.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-2d97a9b1.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-7b0d66fa.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-f16d0581.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-b9ac0977.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-5633cf52.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-02d548e5.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-7c504a35.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-ec0e08df.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-1760d000.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-9025d4b5.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-e7ecc4a8.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-91441f83.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-996c7c10.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-1eb4d2d0.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-ebf53c6c.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-81adf737.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-7bbd307a.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-25648db5.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-6be44703.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-0621d647.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-1fff0ec9.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-6dca16db.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-dc205d41.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-17f134d3.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-7a85103e.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-0cdd440a.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-70e4be2e.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-d7c1fb98.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-faf1315e.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-37c37cf7.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-c55eb8d6.jpg?v=d212ffec',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();})();